@syncfusion/ej2-base 24.2.7 → 25.1.35-579988

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 (163) hide show
  1. package/.eslintrc.json +2 -1
  2. package/CHANGELOG.md +641 -677
  3. package/{README.md → ReadMe.md} +100 -100
  4. package/dist/ej2-base.umd.min.js +1 -10
  5. package/dist/ej2-base.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-base.es2015.js +178 -1025
  7. package/dist/es6/ej2-base.es2015.js.map +1 -1
  8. package/dist/es6/ej2-base.es5.js +226 -934
  9. package/dist/es6/ej2-base.es5.js.map +1 -1
  10. package/dist/global/ej2-base.min.js +1 -10
  11. package/dist/global/ej2-base.min.js.map +1 -1
  12. package/dist/global/index.d.ts +0 -9
  13. package/dist/ts/ajax.ts +236 -0
  14. package/dist/ts/animation.ts +544 -0
  15. package/dist/ts/base.ts +357 -0
  16. package/dist/ts/browser.ts +387 -0
  17. package/dist/ts/child-property.ts +192 -0
  18. package/dist/ts/component.ts +519 -0
  19. package/dist/ts/dom.ts +488 -0
  20. package/dist/ts/draggable.ts +1155 -0
  21. package/dist/ts/droppable.ts +172 -0
  22. package/dist/ts/event-handler.ts +169 -0
  23. package/dist/ts/internationalization.ts +369 -0
  24. package/dist/ts/intl/date-formatter.ts +317 -0
  25. package/dist/ts/intl/date-parser.ts +426 -0
  26. package/dist/ts/intl/intl-base.ts +1104 -0
  27. package/dist/ts/intl/number-formatter.ts +411 -0
  28. package/dist/ts/intl/number-parser.ts +158 -0
  29. package/dist/ts/intl/parser-base.ts +394 -0
  30. package/dist/ts/keyboard.ts +238 -0
  31. package/dist/ts/l10n.ts +94 -0
  32. package/dist/ts/module-loader.ts +149 -0
  33. package/dist/ts/notify-property-change.ts +726 -0
  34. package/dist/ts/observer.ts +236 -0
  35. package/dist/ts/sanitize-helper.ts +224 -0
  36. package/dist/ts/template-engine.ts +191 -0
  37. package/dist/ts/template.ts +329 -0
  38. package/dist/ts/touch.ts +544 -0
  39. package/dist/ts/util.ts +523 -0
  40. package/dist/ts/validate-lic.ts +0 -0
  41. package/e2e/crypto.js +16 -16
  42. package/e2e/m.protractor.config.js +286 -286
  43. package/e2e/modified-protractor/protractor.config.js +316 -316
  44. package/e2e/protractor.config.js +389 -332
  45. package/helpers/e2e/index.js +3 -3
  46. package/license +10 -10
  47. package/package.json +225 -174
  48. package/src/ajax.d.ts +1 -1
  49. package/src/ajax.js +3 -8
  50. package/src/animation-model.d.ts +41 -41
  51. package/src/animation.d.ts +6 -6
  52. package/src/animation.js +25 -25
  53. package/src/base.d.ts +2 -1
  54. package/src/base.js +9 -7
  55. package/src/component-model.d.ts +16 -16
  56. package/src/component.d.ts +9 -3
  57. package/src/component.js +50 -38
  58. package/src/draggable-model.d.ts +113 -113
  59. package/src/draggable.d.ts +2 -0
  60. package/src/draggable.js +45 -29
  61. package/src/droppable-model.d.ts +23 -23
  62. package/src/droppable.js +19 -19
  63. package/src/event-handler.js +2 -1
  64. package/src/index.d.ts +0 -3
  65. package/src/index.js +0 -3
  66. package/src/intl/date-formatter.js +2 -6
  67. package/src/intl/date-parser.js +1 -20
  68. package/src/intl/intl-base.js +1 -164
  69. package/src/intl/number-formatter.d.ts +3 -0
  70. package/src/intl/number-formatter.js +7 -7
  71. package/src/intl/number-parser.js +1 -0
  72. package/src/keyboard-model.d.ts +16 -16
  73. package/src/keyboard.js +19 -19
  74. package/src/module-loader.d.ts +12 -0
  75. package/src/module-loader.js +11 -0
  76. package/src/notify-property-change.js +3 -2
  77. package/src/observer.js +2 -0
  78. package/src/sanitize-helper.js +5 -0
  79. package/src/template-engine.js +1 -0
  80. package/src/template.js +3 -2
  81. package/src/touch-model.d.ts +39 -39
  82. package/src/touch.js +19 -19
  83. package/src/validate-lic.d.ts +0 -11
  84. package/src/validate-lic.js +1 -259
  85. package/styles/_all.scss +2 -2
  86. package/styles/_bds-dark-definition.scss +15 -0
  87. package/styles/_bds-definition.scss +15 -0
  88. package/styles/_bootstrap-dark-definition.scss +42 -42
  89. package/styles/_bootstrap-definition.scss +42 -42
  90. package/styles/_bootstrap4-definition.scss +11 -11
  91. package/styles/_bootstrap5-dark-definition.scss +9 -9
  92. package/styles/_bootstrap5-definition.scss +8 -8
  93. package/styles/_fabric-dark-definition.scss +42 -42
  94. package/styles/_fabric-definition.scss +42 -42
  95. package/styles/_fluent-dark-definition.scss +9 -9
  96. package/styles/_fluent-definition.scss +9 -9
  97. package/styles/_fluent2-definition.scss +9 -0
  98. package/styles/_fusionnew-dark-definition.scss +8 -8
  99. package/styles/_fusionnew-definition.scss +8 -8
  100. package/styles/_highcontrast-definition.scss +42 -42
  101. package/styles/_highcontrast-light-definition.scss +42 -42
  102. package/styles/_material-dark-definition.scss +48 -48
  103. package/styles/_material-definition.scss +49 -49
  104. package/styles/_material3-dark-definition.scss +14 -14
  105. package/styles/_material3-definition.scss +15 -15
  106. package/styles/_tailwind-dark-definition.scss +15 -15
  107. package/styles/_tailwind-definition.scss +15 -15
  108. package/styles/animation/_all.scss +560 -560
  109. package/styles/bootstrap-dark.css +10 -1
  110. package/styles/bootstrap.css +10 -1
  111. package/styles/bootstrap4.css +10 -1
  112. package/styles/bootstrap5-dark.css +10 -1
  113. package/styles/bootstrap5.css +10 -1
  114. package/styles/common/_all.scss +2 -2
  115. package/styles/common/_core.scss +117 -117
  116. package/styles/common/_mixin.scss +9 -9
  117. package/styles/definition/_bds-dark.scss +1179 -0
  118. package/styles/definition/_bds.scss +1474 -0
  119. package/styles/definition/_bootstrap-dark.scss +219 -219
  120. package/styles/definition/_bootstrap.scss +215 -215
  121. package/styles/definition/_bootstrap4.scss +167 -167
  122. package/styles/definition/_bootstrap5-dark.scss +493 -493
  123. package/styles/definition/_bootstrap5.scss +494 -494
  124. package/styles/definition/_fabric-dark.scss +200 -200
  125. package/styles/definition/_fabric.scss +198 -198
  126. package/styles/definition/_fluent-dark.scss +557 -557
  127. package/styles/definition/_fluent.scss +558 -558
  128. package/styles/definition/_fluent2.scss +2198 -0
  129. package/styles/definition/_fusionnew-dark.scss +362 -362
  130. package/styles/definition/_fusionnew.scss +363 -363
  131. package/styles/definition/_highcontrast-light.scss +193 -193
  132. package/styles/definition/_highcontrast.scss +195 -195
  133. package/styles/definition/_material-dark.scss +198 -198
  134. package/styles/definition/_material.scss +192 -192
  135. package/styles/definition/_material3-dark.scss +710 -710
  136. package/styles/definition/_material3.scss +792 -792
  137. package/styles/definition/_tailwind-dark.scss +488 -488
  138. package/styles/definition/_tailwind.scss +485 -485
  139. package/styles/fabric-dark.css +10 -1
  140. package/styles/fabric.css +10 -1
  141. package/styles/fluent-dark.css +10 -1
  142. package/styles/fluent.css +10 -1
  143. package/styles/highcontrast-light.css +10 -1
  144. package/styles/highcontrast.css +10 -1
  145. package/styles/material-dark.css +10 -1
  146. package/styles/material.css +10 -1
  147. package/styles/material3-dark.css +10 -1
  148. package/styles/material3.css +10 -1
  149. package/styles/offline-theme/material-dark.css +10 -1
  150. package/styles/offline-theme/material.css +10 -1
  151. package/styles/offline-theme/tailwind-dark.css +10 -1
  152. package/styles/offline-theme/tailwind.css +10 -1
  153. package/styles/tailwind-dark.css +10 -1
  154. package/styles/tailwind.css +10 -1
  155. package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -60
  156. package/.github/PULL_REQUEST_TEMPLATE/feature.md +0 -42
  157. package/bin/syncfusion-license.js +0 -2
  158. package/dist/ej2-base.min.js +0 -10
  159. package/e2e/index.d.ts +0 -27
  160. package/src/fetch.d.ts +0 -114
  161. package/src/fetch.js +0 -116
  162. package/src/hijri-parser.d.ts +0 -19
  163. package/src/hijri-parser.js +0 -204
@@ -1,8 +1,8 @@
1
1
  define(["require", "exports", "./base"], function (require, exports, base_1) {
2
2
  "use strict";
3
- function __export(m) {
4
- for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
5
- }
3
+ function __export(m) {
4
+ for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
5
+ }
6
6
  Object.defineProperty(exports, "__esModule", { value: true });
7
7
  __export(base_1);
8
8
  });
package/license CHANGED
@@ -1,10 +1,10 @@
1
- Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
2
-
3
- To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
4
-
5
- Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
6
-
7
- Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
8
-
9
- The Syncfusion license that contains the terms and conditions can be found at
10
- https://www.syncfusion.com/content/downloads/syncfusion_license.pdf
1
+ Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
2
+
3
+ To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
4
+
5
+ Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
6
+
7
+ Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
8
+
9
+ The Syncfusion license that contains the terms and conditions can be found at
10
+ https://www.syncfusion.com/content/downloads/syncfusion_license.pdf
package/package.json CHANGED
@@ -1,174 +1,225 @@
1
- {
2
- "_from": "@syncfusion/ej2-base@*",
3
- "_id": "@syncfusion/ej2-base@24.2.5",
4
- "_inBundle": false,
5
- "_integrity": "sha512-pJvhVF1l3TTUm0NfT9YwuXjMEgTP42tqnaKyzIelSGOMdPbr1n7ObO5X1DaUO7hwUi0YGdjv8sJag4sZofDkNQ==",
6
- "_location": "/@syncfusion/ej2-base",
7
- "_phantomChildren": {},
8
- "_requested": {
9
- "type": "range",
10
- "registry": true,
11
- "raw": "@syncfusion/ej2-base@*",
12
- "name": "@syncfusion/ej2-base",
13
- "escapedName": "@syncfusion%2fej2-base",
14
- "scope": "@syncfusion",
15
- "rawSpec": "*",
16
- "saveSpec": null,
17
- "fetchSpec": "*"
18
- },
19
- "_requiredBy": [
20
- "/",
21
- "/@syncfusion/ej2",
22
- "/@syncfusion/ej2-angular-barcode-generator",
23
- "/@syncfusion/ej2-angular-base",
24
- "/@syncfusion/ej2-angular-buttons",
25
- "/@syncfusion/ej2-angular-charts",
26
- "/@syncfusion/ej2-angular-diagrams",
27
- "/@syncfusion/ej2-angular-documenteditor",
28
- "/@syncfusion/ej2-angular-dropdowns",
29
- "/@syncfusion/ej2-angular-filemanager",
30
- "/@syncfusion/ej2-angular-gantt",
31
- "/@syncfusion/ej2-angular-grids",
32
- "/@syncfusion/ej2-angular-heatmap",
33
- "/@syncfusion/ej2-angular-inplace-editor",
34
- "/@syncfusion/ej2-angular-inputs",
35
- "/@syncfusion/ej2-angular-pdfviewer",
36
- "/@syncfusion/ej2-angular-richtexteditor",
37
- "/@syncfusion/ej2-angular-splitbuttons",
38
- "/@syncfusion/ej2-angular-spreadsheet",
39
- "/@syncfusion/ej2-angular-treegrid",
40
- "/@syncfusion/ej2-barcode-generator",
41
- "/@syncfusion/ej2-buttons",
42
- "/@syncfusion/ej2-calendars",
43
- "/@syncfusion/ej2-charts",
44
- "/@syncfusion/ej2-circulargauge",
45
- "/@syncfusion/ej2-data",
46
- "/@syncfusion/ej2-diagrams",
47
- "/@syncfusion/ej2-documenteditor",
48
- "/@syncfusion/ej2-drawings",
49
- "/@syncfusion/ej2-dropdowns",
50
- "/@syncfusion/ej2-excel-export",
51
- "/@syncfusion/ej2-filemanager",
52
- "/@syncfusion/ej2-gantt",
53
- "/@syncfusion/ej2-grids",
54
- "/@syncfusion/ej2-heatmap",
55
- "/@syncfusion/ej2-image-editor",
56
- "/@syncfusion/ej2-inplace-editor",
57
- "/@syncfusion/ej2-inputs",
58
- "/@syncfusion/ej2-kanban",
59
- "/@syncfusion/ej2-layouts",
60
- "/@syncfusion/ej2-lineargauge",
61
- "/@syncfusion/ej2-lists",
62
- "/@syncfusion/ej2-maps",
63
- "/@syncfusion/ej2-navigations",
64
- "/@syncfusion/ej2-notifications",
65
- "/@syncfusion/ej2-pdf",
66
- "/@syncfusion/ej2-pdfviewer",
67
- "/@syncfusion/ej2-pivotview",
68
- "/@syncfusion/ej2-popups",
69
- "/@syncfusion/ej2-progressbar",
70
- "/@syncfusion/ej2-querybuilder",
71
- "/@syncfusion/ej2-react-barcode-generator",
72
- "/@syncfusion/ej2-react-base",
73
- "/@syncfusion/ej2-react-buttons",
74
- "/@syncfusion/ej2-react-charts",
75
- "/@syncfusion/ej2-react-diagrams",
76
- "/@syncfusion/ej2-react-documenteditor",
77
- "/@syncfusion/ej2-react-dropdowns",
78
- "/@syncfusion/ej2-react-filemanager",
79
- "/@syncfusion/ej2-react-gantt",
80
- "/@syncfusion/ej2-react-grids",
81
- "/@syncfusion/ej2-react-heatmap",
82
- "/@syncfusion/ej2-react-inplace-editor",
83
- "/@syncfusion/ej2-react-inputs",
84
- "/@syncfusion/ej2-react-pdfviewer",
85
- "/@syncfusion/ej2-react-richtexteditor",
86
- "/@syncfusion/ej2-react-splitbuttons",
87
- "/@syncfusion/ej2-react-spreadsheet",
88
- "/@syncfusion/ej2-react-treegrid",
89
- "/@syncfusion/ej2-ribbon",
90
- "/@syncfusion/ej2-richtexteditor",
91
- "/@syncfusion/ej2-schedule",
92
- "/@syncfusion/ej2-splitbuttons",
93
- "/@syncfusion/ej2-spreadsheet",
94
- "/@syncfusion/ej2-svg-base",
95
- "/@syncfusion/ej2-treegrid",
96
- "/@syncfusion/ej2-treemap",
97
- "/@syncfusion/ej2-vue-barcode-generator",
98
- "/@syncfusion/ej2-vue-base",
99
- "/@syncfusion/ej2-vue-buttons",
100
- "/@syncfusion/ej2-vue-charts",
101
- "/@syncfusion/ej2-vue-diagrams",
102
- "/@syncfusion/ej2-vue-documenteditor",
103
- "/@syncfusion/ej2-vue-dropdowns",
104
- "/@syncfusion/ej2-vue-filemanager",
105
- "/@syncfusion/ej2-vue-gantt",
106
- "/@syncfusion/ej2-vue-grids",
107
- "/@syncfusion/ej2-vue-heatmap",
108
- "/@syncfusion/ej2-vue-inplace-editor",
109
- "/@syncfusion/ej2-vue-inputs",
110
- "/@syncfusion/ej2-vue-pdfviewer",
111
- "/@syncfusion/ej2-vue-richtexteditor",
112
- "/@syncfusion/ej2-vue-splitbuttons",
113
- "/@syncfusion/ej2-vue-spreadsheet",
114
- "/@syncfusion/ej2-vue-treegrid"
115
- ],
116
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-base/-/ej2-base-24.2.5.tgz",
117
- "_shasum": "4fee55353627b5a680cb389353938c62b9f518de",
118
- "_spec": "@syncfusion/ej2-base@*",
119
- "_where": "/jenkins/workspace/elease-automation_release_24.1.1/packages/included",
120
- "author": {
121
- "name": "Syncfusion Inc."
122
- },
123
- "bin": {
124
- "syncfusion-license": "bin/syncfusion-license.js"
125
- },
126
- "bugs": {
127
- "url": "https://github.com/syncfusion/ej2-javascript-ui-controls/issues"
128
- },
129
- "bundleDependencies": false,
130
- "dependencies": {
131
- "@syncfusion/ej2-icons": "~24.2.3"
132
- },
133
- "deprecated": false,
134
- "description": "A common package of Essential JS 2 base libraries, methods and class definitions",
135
- "devDependencies": {},
136
- "es2015": "./dist/es6/ej2-base.es5.js",
137
- "homepage": "https://www.syncfusion.com/javascript-ui-controls",
138
- "keywords": [
139
- "ej2",
140
- "syncfusion",
141
- "ej2-base",
142
- "web-components",
143
- "typescript",
144
- "base",
145
- "common",
146
- "core",
147
- "library",
148
- "ajax",
149
- "animation",
150
- "internationalization",
151
- "drag",
152
- "drop",
153
- "drag-drop",
154
- "template",
155
- "template-engine",
156
- "rtl",
157
- "right-to-left",
158
- "persistence",
159
- "state-persistence",
160
- "theme",
161
- "styles"
162
- ],
163
- "license": "SEE LICENSE IN license",
164
- "main": "./dist/ej2-base.umd.min.js",
165
- "module": "./index.js",
166
- "name": "@syncfusion/ej2-base",
167
- "repository": {
168
- "type": "git",
169
- "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
170
- },
171
- "typings": "index.d.ts",
172
- "version": "24.2.7",
173
- "sideEffects": true
174
- }
1
+ {
2
+ "_from": "@syncfusion/ej2-base@*",
3
+ "_id": "@syncfusion/ej2-base@18.92.0",
4
+ "_inBundle": false,
5
+ "_integrity": "sha512-duRt3JuBjQX0mQtd7LO8Q92GCEef3zrE9BF1cJlRRutTv15EdfhPMI72ND4cm6gMw9nMwDeAKA7pPbCcF+t4YQ==",
6
+ "_location": "/@syncfusion/ej2-base",
7
+ "_phantomChildren": {},
8
+ "_requested": {
9
+ "type": "range",
10
+ "registry": true,
11
+ "raw": "@syncfusion/ej2-base@*",
12
+ "name": "@syncfusion/ej2-base",
13
+ "escapedName": "@syncfusion%2fej2-base",
14
+ "scope": "@syncfusion",
15
+ "rawSpec": "*",
16
+ "saveSpec": null,
17
+ "fetchSpec": "*"
18
+ },
19
+ "_requiredBy": [
20
+ "/",
21
+ "/@syncfusion/ej2",
22
+ "/@syncfusion/ej2-angular-barcode-generator",
23
+ "/@syncfusion/ej2-angular-base",
24
+ "/@syncfusion/ej2-angular-buttons",
25
+ "/@syncfusion/ej2-angular-calendars",
26
+ "/@syncfusion/ej2-angular-charts",
27
+ "/@syncfusion/ej2-angular-circulargauge",
28
+ "/@syncfusion/ej2-angular-diagrams",
29
+ "/@syncfusion/ej2-angular-documenteditor",
30
+ "/@syncfusion/ej2-angular-dropdowns",
31
+ "/@syncfusion/ej2-angular-filemanager",
32
+ "/@syncfusion/ej2-angular-gantt",
33
+ "/@syncfusion/ej2-angular-grids",
34
+ "/@syncfusion/ej2-angular-heatmap",
35
+ "/@syncfusion/ej2-angular-image-editor",
36
+ "/@syncfusion/ej2-angular-inplace-editor",
37
+ "/@syncfusion/ej2-angular-inputs",
38
+ "/@syncfusion/ej2-angular-kanban",
39
+ "/@syncfusion/ej2-angular-layouts",
40
+ "/@syncfusion/ej2-angular-lineargauge",
41
+ "/@syncfusion/ej2-angular-lists",
42
+ "/@syncfusion/ej2-angular-maps",
43
+ "/@syncfusion/ej2-angular-navigations",
44
+ "/@syncfusion/ej2-angular-notifications",
45
+ "/@syncfusion/ej2-angular-pdfviewer",
46
+ "/@syncfusion/ej2-angular-pivotview",
47
+ "/@syncfusion/ej2-angular-popups",
48
+ "/@syncfusion/ej2-angular-progressbar",
49
+ "/@syncfusion/ej2-angular-querybuilder",
50
+ "/@syncfusion/ej2-angular-ribbon",
51
+ "/@syncfusion/ej2-angular-richtexteditor",
52
+ "/@syncfusion/ej2-angular-schedule",
53
+ "/@syncfusion/ej2-angular-splitbuttons",
54
+ "/@syncfusion/ej2-angular-spreadsheet",
55
+ "/@syncfusion/ej2-angular-treegrid",
56
+ "/@syncfusion/ej2-angular-treemap",
57
+ "/@syncfusion/ej2-barcode-generator",
58
+ "/@syncfusion/ej2-buttons",
59
+ "/@syncfusion/ej2-calendars",
60
+ "/@syncfusion/ej2-charts",
61
+ "/@syncfusion/ej2-circulargauge",
62
+ "/@syncfusion/ej2-data",
63
+ "/@syncfusion/ej2-diagrams",
64
+ "/@syncfusion/ej2-documenteditor",
65
+ "/@syncfusion/ej2-drawings",
66
+ "/@syncfusion/ej2-dropdowns",
67
+ "/@syncfusion/ej2-excel-export",
68
+ "/@syncfusion/ej2-filemanager",
69
+ "/@syncfusion/ej2-gantt",
70
+ "/@syncfusion/ej2-grids",
71
+ "/@syncfusion/ej2-heatmap",
72
+ "/@syncfusion/ej2-image-editor",
73
+ "/@syncfusion/ej2-inplace-editor",
74
+ "/@syncfusion/ej2-inputs",
75
+ "/@syncfusion/ej2-kanban",
76
+ "/@syncfusion/ej2-layouts",
77
+ "/@syncfusion/ej2-lineargauge",
78
+ "/@syncfusion/ej2-lists",
79
+ "/@syncfusion/ej2-maps",
80
+ "/@syncfusion/ej2-navigations",
81
+ "/@syncfusion/ej2-notifications",
82
+ "/@syncfusion/ej2-pdf",
83
+ "/@syncfusion/ej2-pdfviewer",
84
+ "/@syncfusion/ej2-pivotview",
85
+ "/@syncfusion/ej2-popups",
86
+ "/@syncfusion/ej2-progressbar",
87
+ "/@syncfusion/ej2-querybuilder",
88
+ "/@syncfusion/ej2-react-barcode-generator",
89
+ "/@syncfusion/ej2-react-base",
90
+ "/@syncfusion/ej2-react-buttons",
91
+ "/@syncfusion/ej2-react-calendars",
92
+ "/@syncfusion/ej2-react-charts",
93
+ "/@syncfusion/ej2-react-circulargauge",
94
+ "/@syncfusion/ej2-react-diagrams",
95
+ "/@syncfusion/ej2-react-documenteditor",
96
+ "/@syncfusion/ej2-react-dropdowns",
97
+ "/@syncfusion/ej2-react-filemanager",
98
+ "/@syncfusion/ej2-react-gantt",
99
+ "/@syncfusion/ej2-react-grids",
100
+ "/@syncfusion/ej2-react-heatmap",
101
+ "/@syncfusion/ej2-react-image-editor",
102
+ "/@syncfusion/ej2-react-inplace-editor",
103
+ "/@syncfusion/ej2-react-inputs",
104
+ "/@syncfusion/ej2-react-kanban",
105
+ "/@syncfusion/ej2-react-layouts",
106
+ "/@syncfusion/ej2-react-lineargauge",
107
+ "/@syncfusion/ej2-react-lists",
108
+ "/@syncfusion/ej2-react-maps",
109
+ "/@syncfusion/ej2-react-navigations",
110
+ "/@syncfusion/ej2-react-notifications",
111
+ "/@syncfusion/ej2-react-pdfviewer",
112
+ "/@syncfusion/ej2-react-pivotview",
113
+ "/@syncfusion/ej2-react-popups",
114
+ "/@syncfusion/ej2-react-progressbar",
115
+ "/@syncfusion/ej2-react-querybuilder",
116
+ "/@syncfusion/ej2-react-ribbon",
117
+ "/@syncfusion/ej2-react-richtexteditor",
118
+ "/@syncfusion/ej2-react-schedule",
119
+ "/@syncfusion/ej2-react-splitbuttons",
120
+ "/@syncfusion/ej2-react-spreadsheet",
121
+ "/@syncfusion/ej2-react-treegrid",
122
+ "/@syncfusion/ej2-react-treemap",
123
+ "/@syncfusion/ej2-ribbon",
124
+ "/@syncfusion/ej2-richtexteditor",
125
+ "/@syncfusion/ej2-schedule",
126
+ "/@syncfusion/ej2-splitbuttons",
127
+ "/@syncfusion/ej2-spreadsheet",
128
+ "/@syncfusion/ej2-svg-base",
129
+ "/@syncfusion/ej2-treegrid",
130
+ "/@syncfusion/ej2-treemap",
131
+ "/@syncfusion/ej2-vue-barcode-generator",
132
+ "/@syncfusion/ej2-vue-base",
133
+ "/@syncfusion/ej2-vue-buttons",
134
+ "/@syncfusion/ej2-vue-calendars",
135
+ "/@syncfusion/ej2-vue-charts",
136
+ "/@syncfusion/ej2-vue-circulargauge",
137
+ "/@syncfusion/ej2-vue-diagrams",
138
+ "/@syncfusion/ej2-vue-documenteditor",
139
+ "/@syncfusion/ej2-vue-dropdowns",
140
+ "/@syncfusion/ej2-vue-filemanager",
141
+ "/@syncfusion/ej2-vue-gantt",
142
+ "/@syncfusion/ej2-vue-grids",
143
+ "/@syncfusion/ej2-vue-heatmap",
144
+ "/@syncfusion/ej2-vue-image-editor",
145
+ "/@syncfusion/ej2-vue-inplace-editor",
146
+ "/@syncfusion/ej2-vue-inputs",
147
+ "/@syncfusion/ej2-vue-kanban",
148
+ "/@syncfusion/ej2-vue-layouts",
149
+ "/@syncfusion/ej2-vue-lineargauge",
150
+ "/@syncfusion/ej2-vue-lists",
151
+ "/@syncfusion/ej2-vue-maps",
152
+ "/@syncfusion/ej2-vue-navigations",
153
+ "/@syncfusion/ej2-vue-notifications",
154
+ "/@syncfusion/ej2-vue-pdfviewer",
155
+ "/@syncfusion/ej2-vue-pivotview",
156
+ "/@syncfusion/ej2-vue-popups",
157
+ "/@syncfusion/ej2-vue-progressbar",
158
+ "/@syncfusion/ej2-vue-querybuilder",
159
+ "/@syncfusion/ej2-vue-ribbon",
160
+ "/@syncfusion/ej2-vue-richtexteditor",
161
+ "/@syncfusion/ej2-vue-schedule",
162
+ "/@syncfusion/ej2-vue-splitbuttons",
163
+ "/@syncfusion/ej2-vue-spreadsheet",
164
+ "/@syncfusion/ej2-vue-treegrid",
165
+ "/@syncfusion/ej2-vue-treemap"
166
+ ],
167
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-base/-/ej2-base-18.92.0.tgz",
168
+ "_shasum": "1c8e5f13a7a0f742a83daa98db9cb3e577fb9702",
169
+ "_spec": "@syncfusion/ej2-base@*",
170
+ "_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
171
+ "author": {
172
+ "name": "Syncfusion Inc."
173
+ },
174
+ "bin": {
175
+ "syncfusion-license": "bin/syncfusion-license.js"
176
+ },
177
+ "bugs": {
178
+ "url": "https://github.com/syncfusion/ej2-javascript-ui-controls/issues"
179
+ },
180
+ "bundleDependencies": false,
181
+ "dependencies": {
182
+ "@syncfusion/ej2-icons": "~25.1.35"
183
+ },
184
+ "deprecated": false,
185
+ "description": "A common package of Essential JS 2 base libraries, methods and class definitions",
186
+ "devDependencies": {},
187
+ "es2015": "./dist/es6/ej2-base.es5.js",
188
+ "homepage": "https://www.syncfusion.com/javascript-ui-controls",
189
+ "keywords": [
190
+ "ej2",
191
+ "syncfusion",
192
+ "ej2-base",
193
+ "web-components",
194
+ "typescript",
195
+ "base",
196
+ "common",
197
+ "core",
198
+ "library",
199
+ "ajax",
200
+ "animation",
201
+ "internationalization",
202
+ "drag",
203
+ "drop",
204
+ "drag-drop",
205
+ "template",
206
+ "template-engine",
207
+ "rtl",
208
+ "right-to-left",
209
+ "persistence",
210
+ "state-persistence",
211
+ "theme",
212
+ "styles"
213
+ ],
214
+ "license": "SEE LICENSE IN license",
215
+ "main": "./dist/ej2-base.umd.min.js",
216
+ "module": "./index.js",
217
+ "name": "@syncfusion/ej2-base",
218
+ "repository": {
219
+ "type": "git",
220
+ "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
221
+ },
222
+ "typings": "index.d.ts",
223
+ "version": "25.1.35-579988",
224
+ "sideEffects": true
225
+ }
package/src/ajax.d.ts CHANGED
@@ -71,7 +71,7 @@ export declare class Ajax {
71
71
  * Send the request to server.
72
72
  *
73
73
  * @param {any} data - To send the user data
74
- * @return {Promise} ?
74
+ * @returns {Promise} ?
75
75
  */
76
76
  send(data?: string | Object): Promise<Ajax>;
77
77
  /**
package/src/ajax.js CHANGED
@@ -55,7 +55,7 @@ var Ajax = /** @class */ (function () {
55
55
  * Send the request to server.
56
56
  *
57
57
  * @param {any} data - To send the user data
58
- * @return {Promise} ?
58
+ * @returns {Promise} ?
59
59
  */
60
60
  Ajax.prototype.send = function (data) {
61
61
  var _this = this;
@@ -86,7 +86,6 @@ var Ajax = /** @class */ (function () {
86
86
  if (!isNullOrUndefined(_this.onUploadProgress)) {
87
87
  _this.httpRequest.upload.onprogress = _this.onUploadProgress;
88
88
  }
89
- // eslint-disable-next-line
90
89
  _this.httpRequest.open(_this.type, _this.url, _this.mode);
91
90
  // Set default headers
92
91
  if (!isNullOrUndefined(_this.data) && _this.contentType !== null) {
@@ -151,17 +150,13 @@ var Ajax = /** @class */ (function () {
151
150
  * @returns {string} ?
152
151
  */
153
152
  Ajax.prototype.getResponseHeader = function (key) {
154
- var responseHeaders;
155
- var header;
156
- // eslint-disable-next-line
157
- responseHeaders = {};
153
+ var responseHeaders = {};
158
154
  var headers = headerRegex.exec(this.httpRequest.getAllResponseHeaders());
159
155
  while (headers) {
160
156
  responseHeaders[headers[1].toLowerCase()] = headers[2];
161
157
  headers = headerRegex.exec(this.httpRequest.getAllResponseHeaders());
162
158
  }
163
- // eslint-disable-next-line
164
- header = responseHeaders[key.toLowerCase()];
159
+ var header = responseHeaders[key.toLowerCase()];
165
160
  return isNullOrUndefined(header) ? null : header;
166
161
  };
167
162
  return Ajax;
@@ -1,4 +1,4 @@
1
- import { createElement, selectAll, closest } from './dom';import { Base, EmitType } from './base';import { Browser } from './browser';import { EventHandler } from './event-handler';import { Property, NotifyPropertyChanges, INotifyPropertyChanged, Event } from './notify-property-change';
1
+ import { createElement, selectAll, closest } from './dom';
2
2
  import {Effect,AnimationOptions} from "./animation";
3
3
 
4
4
  /**
@@ -7,59 +7,59 @@ import {Effect,AnimationOptions} from "./animation";
7
7
  export interface AnimationModel {
8
8
 
9
9
  /**
10
- * Specify the type of animation
11
- *
12
- * @default : 'FadeIn';
13
- */
14
- name?: Effect;
10
+ * Specify the type of animation
11
+ *
12
+ * @default : 'FadeIn';
13
+ */
14
+ name?: Effect;
15
15
 
16
16
  /**
17
- * Specify the duration to animate
18
- *
19
- * @default : 400;
20
- */
21
- duration?: number;
17
+ * Specify the duration to animate
18
+ *
19
+ * @default : 400;
20
+ */
21
+ duration?: number;
22
22
 
23
23
  /**
24
- * Specify the animation timing function
25
- *
26
- * @default : 'ease';
27
- */
28
- timingFunction?: string;
24
+ * Specify the animation timing function
25
+ *
26
+ * @default : 'ease';
27
+ */
28
+ timingFunction?: string;
29
29
 
30
30
  /**
31
- * Specify the delay to start animation
32
- *
33
- * @default : 0;
34
- */
35
- delay?: number;
31
+ * Specify the delay to start animation
32
+ *
33
+ * @default : 0;
34
+ */
35
+ delay?: number;
36
36
 
37
37
  /**
38
- * Triggers when animation is in-progress
39
- *
40
- * @event progress
41
- */
42
- progress?: EmitType<AnimationOptions>;
38
+ * Triggers when animation is in-progress
39
+ *
40
+ * @event progress
41
+ */
42
+ progress?: EmitType<AnimationOptions>;
43
43
 
44
44
  /**
45
- * Triggers when the animation is started
46
- *
47
- * @event begin
48
- */
49
- begin?: EmitType<AnimationOptions>;
45
+ * Triggers when the animation is started
46
+ *
47
+ * @event begin
48
+ */
49
+ begin?: EmitType<AnimationOptions>;
50
50
 
51
51
  /**
52
- * Triggers when animation is completed
53
- *
54
- * @event end
55
- */
56
- end?: EmitType<AnimationOptions>;
52
+ * Triggers when animation is completed
53
+ *
54
+ * @event end
55
+ */
56
+ end?: EmitType<AnimationOptions>;
57
57
 
58
58
  /**
59
- * Triggers when animation is failed due to any scripts
60
- *
61
- * @event fail
62
- */
63
- fail?: EmitType<AnimationOptions>;
59
+ * Triggers when animation is failed due to any scripts
60
+ *
61
+ * @event fail
62
+ */
63
+ fail?: EmitType<AnimationOptions>;
64
64
 
65
65
  }
@@ -212,15 +212,15 @@ export declare function setGlobalAnimation(value: string | GlobalAnimationMode):
212
212
  */
213
213
  export declare enum GlobalAnimationMode {
214
214
  /**
215
- * Defines the global animation mode as Default. Animation is enabled or disabled based on the component's animation settings.
216
- */
215
+ * Defines the global animation mode as Default. Animation is enabled or disabled based on the component's animation settings.
216
+ */
217
217
  Default = "Default",
218
218
  /**
219
- * Defines the global animation mode as Enable. Enables the animation for all components, regardless of the individual component's animation settings.
220
- */
219
+ * Defines the global animation mode as Enable. Enables the animation for all components, regardless of the individual component's animation settings.
220
+ */
221
221
  Enable = "Enable",
222
222
  /**
223
- * Defines the global animation mode as Disable. Disables the animation for all components, regardless of the individual component's animation settings.
224
- */
223
+ * Defines the global animation mode as Disable. Disables the animation for all components, regardless of the individual component's animation settings.
224
+ */
225
225
  Disable = "Disable"
226
226
  }