@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
package/CHANGELOG.md CHANGED
@@ -1,677 +1,641 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ### Common
6
-
7
- #### Bug Fixes
8
-
9
- - `#I542405` - The issue with "component events remain after being destroyed through the template in the heap memory" has been resolved.
10
-
11
- ## 24.2.5 (2024-02-13)
12
-
13
- ### Common
14
-
15
- #### Bug Fixes
16
-
17
- - `#I495294` - The issue with content sanitization in the tooltip component has been resolved.
18
-
19
- ## 24.2.3 (2024-01-31)
20
-
21
- ### Common
22
-
23
- #### Bug Fixes
24
-
25
- - `#I547507` - The issue with "rendering the new line in the html template string" has been resolved.
26
-
27
- ### Common
28
-
29
- #### Bug Fixes
30
-
31
- - `#I541838` - Resolved issue with time picker designator "pm" is automatically flips to "am".
32
-
33
- ## 24.1.46 (2024-01-17)
34
-
35
- ### Common
36
-
37
- #### Bug Fixes
38
-
39
- - `#I531468` - The issue with "rendering the html template string" has been resolved.
40
-
41
- ## 23.2.6 (2023-11-28)
42
-
43
- ### Common
44
-
45
- #### Bug Fixes
46
-
47
- - `#F47826` - Resolved the issue with parsing multiple white space in the template string.
48
- - `#I521836` - The issue with "A script error occurs when the 'Content-Type' header is not present" has been resolved.
49
-
50
- ## 23.2.4 (2023-11-20)
51
-
52
- ### Common
53
-
54
- #### Bug Fixes
55
-
56
- - `#I514915` - The issue with "the script error occurs when the RTE component is used inside the v-if directive in the `Vue 2` application" has been resolved.
57
- - `#I508733` - Negative Currency filtering issue has been fixed.
58
-
59
- ## 23.1.41 (2023-10-17)
60
-
61
- ### Common
62
-
63
- #### Bug Fixes
64
-
65
- - The issue with the "Tooltip component displays empty string when setting content as '${}'" has been resolved.
66
- - `#I495294` - The issue with content sanitization in the tooltip component has been resolved
67
- - `#I504425` - Issue with date parser designator conversion has been fixed.
68
- - `#I503487` - The issue with the "action failure event argument is not displayed with full error details" has been resolved.
69
-
70
- ## 23.1.38 (2023-09-26)
71
-
72
- ### Common
73
-
74
- #### Bug Fixes
75
-
76
- - `#I493496` - Up loader file name with special character issue has been fixed.
77
-
78
- ## 23.1.36 (2023-09-15)
79
-
80
- ### Common
81
-
82
- #### New Features
83
-
84
- - `#F155731` - Provided an option to enable or disable the animation across all Syncfusion components.
85
-
86
- #### Bug Fixes
87
-
88
- - Resolved the issue with offline material theme have google fonts.
89
-
90
- ## 22.2.10 (2023-08-22)
91
-
92
- ### Common
93
-
94
- #### Bug Fixes
95
-
96
- - `#492390` - Resolved the issue with Bold fonts are not included in material theme
97
-
98
- ## 22.2.9 (2023-08-15)
99
-
100
- ### Common
101
-
102
- #### Bug Fixes
103
-
104
- - `#I476890` - Memory leak issue in syncfusion components when using enable Persistence.
105
-
106
- ## 22.2.5 (2023-07-27)
107
-
108
- ### Common
109
-
110
- #### Bug Fixes
111
-
112
- - `#479520` - The issue with dragged elements and mouse positions getting misaligned has been resolved.
113
-
114
- ## 22.1.38 (2023-07-11)
115
-
116
- ### Common
117
-
118
- #### New Features
119
-
120
- - Added UTM parameters.
121
-
122
- ## 22.1.34 (2023-06-21)
123
-
124
- ### Common
125
-
126
- #### New Features
127
-
128
- - Provided the TypeScript 5 compatible support for the EJ2 components.
129
-
130
- ## 21.2.9 (2023-06-06)
131
-
132
- ### Common
133
-
134
- #### Bug Fixes
135
-
136
- - `#I461547` - The issue with the "popup showing on the entire page in the Chrome browser on iPad devices" has been resolved.
137
-
138
- ## 21.1.35 (2023-05-9)
139
-
140
- ### Common
141
-
142
- #### Bug Fixes
143
-
144
- - `#I451675` - The issue in the `template engine` when using `boolean` value has been resolved.
145
-
146
- ## 21.2.3 (2023-05-03)
147
-
148
- ### Common
149
-
150
- #### Bug Fixes
151
-
152
- - `#F180652` - The issue with the "drag element top value changes after scrolling to browser end" has been resolved.
153
-
154
- ## 21.1.39 (2023-04-11)
155
-
156
- ### Common
157
-
158
- #### Bug Fixes
159
-
160
- - `#I445928` - The issue with the "`formatNumber` method on internationalization" has been resolved.
161
-
162
- ## 21.1.38 (2023-04-04)
163
-
164
- ### Common
165
-
166
- #### Bug Fixes
167
-
168
- - `#I440657` - The issue with "Unwanted element is added in `Vue 3` template element" has been resolved.
169
-
170
- ## 21.1.37 (2023-03-29)
171
-
172
- ### Common
173
-
174
- #### Bug Fixes
175
-
176
- - `#F41815` - Resolved the dragged `card` element and mouse position mismatch issue in `kanban`.
177
-
178
- ## 21.1.35 (2023-03-23)
179
-
180
- ### Common
181
-
182
- #### Bug Fixes
183
-
184
- - `#I435907` - The issue with the "`drag and drop` on the `ipad` device" has been resolved.
185
-
186
- ## 20.4.51 (2023-02-21)
187
-
188
- ### Common
189
-
190
- #### New Features
191
-
192
- - `#I421132` - Provided custom format `#,###,, ; (#,###,,)` support for `Numbers` that used in Microsoft Excel's pivot table.
193
-
194
- ## 20.4.48 (2023-02-01)
195
-
196
- ### Dashboard Layout
197
-
198
- #### Bug Fixes
199
-
200
- - `#I423971` - Provided cancel option in Drag Start and Drag Stop events of the Dashboard Layout component.
201
-
202
- ### Common
203
-
204
- #### Bug Fixes
205
-
206
- - `#I424071` - The issue with the "Tooltip component throws a script error when setting content as '${}'" has been resolved.
207
-
208
- ## 20.4.44 (2023-01-18)
209
-
210
- ### Common
211
-
212
- #### Bug Fixes
213
-
214
- - `#F178732` - Resolved the sudden changes in top value of `draggable` element.
215
-
216
- ## 20.4.42 (2023-01-04)
217
-
218
- ### Common
219
-
220
- #### Bug Fixes
221
-
222
- - `#I427250` - Resolved window undefined in server side rendering with React next JS.
223
-
224
- ## 20.4.38 (2022-12-21)
225
-
226
- ### Common
227
-
228
- #### New Features
229
-
230
- - The new `Rating` control has been added to Essential JS 2.
231
- - The `AppBar`, `Floating Action Button (FAB)`, `Mention`, `Message` and `Speed Dial` controls have been developed to meet industry standards and are now marked production-ready.
232
-
233
- #### Breaking Changes
234
-
235
- - If you are using Syncfusion's controls without first registering a license, a license dialog will appear after a certain limit of usage, preventing further interaction in the application. Please make sure to register a valid license in order to continue using the Syncfusion controls without interruption.
236
-
237
- ## 20.3.59 (2022-11-29)
238
-
239
- ### Common
240
-
241
- #### Bug Fixes
242
-
243
- - `#I421652` - The issue with the "gulp is added to the dependency package in the ej2 package" has been resolved.
244
-
245
- ## 20.3.47 (2022-09-29)
246
-
247
- ### Common
248
-
249
- #### Bug Fixes
250
-
251
- - `#I383984` - The issue with the "Unwanted swipe event trigger in Firefox browser" has been resolved.
252
-
253
- ## 20.2.36 (2022-06-30)
254
-
255
- ### Common
256
-
257
- #### New Features
258
-
259
- - Provided the TypeScript 4.7 compatible support for the EJ2 components.
260
- - Provided the option to register the license key by using the `npx` command. Follow these steps to register the license using the `npx` command:
261
-
262
- | The `npx` command |
263
- |---|
264
- | Install the Syncfusion packages from `npm`. |
265
- | Add the license key either in the environment variable `SYNCFUSION_LICENSE` or in the `syncfusion-license.txt` text file. |
266
- | Run the command `npx syncfusion-license activate` to automatically register the license. |
267
-
268
- ## 20.1.61 (2022-06-21)
269
-
270
- ### Common
271
-
272
- #### Bug Fixes
273
-
274
- - `#F173517` - "The Chart with ngFor data binding is not working" issue has been resolved.
275
-
276
- ## 20.1.60 (2022-06-14)
277
-
278
- ### Common
279
-
280
- #### Bug Fixes
281
-
282
- - `#I372767`, `#I370308` - The empty space issue in `Treeview` component while dragging the element has been resolved.
283
-
284
- ## 20.1.56 (2022-05-17)
285
-
286
- ### Common
287
-
288
- #### Bug Fixes
289
-
290
- - `#F173666` - The issue with sanitize html while creating a appointment in scheduler has been resolve.
291
-
292
- ## 20.1.55 (2022-05-12)
293
-
294
- ### Common
295
-
296
- #### Bug Fixes
297
-
298
- - `#I376600` - The issue with "`IsDevice` value return as false only for Safari browser in iPad" has been resolved.
299
-
300
- ## 20.1.50 (2022-04-19)
301
-
302
- ### Common
303
-
304
- #### Bug Fixes
305
-
306
- - `#I370803` - The issue with "Script error occurs while opening the popup in the DropDownList" has been resolved.
307
-
308
- ## 20.1.48 (2022-04-12)
309
-
310
- ### Common
311
-
312
- #### Bug Fixes
313
-
314
- - `#I374390` - Resolved window undefined in server side rendering with React next JS.
315
-
316
- ## 20.1.47 (2022-04-04)
317
-
318
- ### Common
319
-
320
- #### Bug Fixes
321
-
322
- - `#I324684` - Resolved the `Treeview` check box issues in safari browser.
323
- - `#I342741`, `#F172105`, `#I365783`, `#F172867`, `#I367588`, `#I358914` - Provided the `draggable` support for the mobile and touch devices.
324
-
325
- ### Common
326
-
327
- #### Bug Fixes
328
-
329
- - `I324684` - Resolved the `Treeview` check box issues in safari browser.
330
-
331
- ## 17.4.51 (2020-02-25)
332
-
333
- ### Common
334
-
335
- #### Bug Fixes
336
-
337
- - `I261768` - Resolved script error for invalid custom number formatting.
338
-
339
- ## 17.4.43 (2020-01-14)
340
-
341
- ### Common
342
-
343
- #### Bug Fixes
344
-
345
- - `#I254197`, `#I255889`, `#I257234`, `#I257859`, `#I258137`, `#I259025`, `#I260213`, `#I260331` - Resolved Compilation issue with Typescript Latest version.
346
- - Resolved Server side `updateModel` method is called for each child property in `blazor`.
347
-
348
- ## 17.4.41 (2020-01-07)
349
-
350
- ### Common
351
-
352
- #### Bug Fixes
353
-
354
- - `#I256528` - Resolved `draggable` issue `out` event not triggered.
355
- - `#F149410` - Resolved `drag and drop` function not working `firefox` browser version 60.8 .
356
- - `#I258661` - Resolved `LoadCldr` is not working issue.
357
- - `#I258471` - Improvement the `drag and drop` library performance .
358
-
359
- ## 17.2.49 (2019-09-04)
360
-
361
- ### Common
362
-
363
- #### Bug Fixes
364
-
365
- - Resolved `draggable` issue while setting `clone` as `false`.
366
-
367
- ## 17.2.47 (2019-08-27)
368
-
369
- ### Common
370
-
371
- #### Bug Fixes
372
-
373
- - `#I234975` - Resolved template Engine support is not working while passing double slash `(\\)`.
374
- - `#I242062` - Resolved template Engine support is not working while using Special characters `(@)` in more than one occurrence.
375
-
376
- ## 17.2.46 (2019-08-22)
377
-
378
- ### Common
379
-
380
- #### Bug Fixes
381
-
382
- - Resolved template Engine support is not working while using Special characters `(@)` in `if` condition.
383
-
384
- ## 17.2.40 (2019-08-06)
385
-
386
- ### Common
387
-
388
- #### Bug Fixes
389
-
390
- - `#I240696` - Resolved drag issue for actual drag element for scrolled parent element.
391
- - `#I237495` - Fixed template engine support is not working while passing an array of value within the object.
392
-
393
- ## 17.2.39 (2019-07-30)
394
-
395
- ### Common
396
-
397
- #### Bug Fixes
398
-
399
- - `#I242062` - Resolved Special characters `(@)` are not working for template Engine support.
400
-
401
- ## 17.1.49 (2019-05-29)
402
-
403
- ### Common
404
-
405
- #### Bug Fixes
406
-
407
- - Fixed `parseDate` method returns invalid value when parsing `mm/yyyy` date format.
408
-
409
- ## 17.1.48 (2019-05-21)
410
-
411
- ### Common
412
-
413
- #### Bug Fixes
414
-
415
- - Resolved Multiple space between class Names for template Engine support.
416
-
417
- #### New Features
418
-
419
- - Added the `httpRequest` argument to Ajax `beforeSend` event arguments.
420
-
421
- ## 17.1.43 (2019-04-30)
422
-
423
- ### Common
424
-
425
- #### Bug Fixes
426
-
427
- - #142628, #143613 - Fixed `template` string evaluation malfunctions in `template` engine.
428
- - #226430 - Resolved Drag not working in IE browser issue.
429
-
430
- ## 17.1.38 (2019-03-29)
431
-
432
- ### Common
433
-
434
- #### New Features
435
-
436
- - Provided the Bootstrap 4 support
437
-
438
- ## 17.1.32-beta (2019-03-13)
439
-
440
- ### Common
441
-
442
- #### Bug Fixes
443
-
444
- - #I234200 - Fixed `GetConstant` method does not return correct value when passing 0 as a value in localization.
445
-
446
- #### New Features
447
-
448
- - Provided support for evaluate script from Ajax request in Dom Library.
449
-
450
- #### Breaking Changes
451
-
452
- - ej2 icons has been split-up based on theme names and icons moved to separate npm package ej2-icons
453
- - canvas and svg render base functionalities moved to [ej2-svg-base](https://www.npmjs.com/package/@syncfusion/ej2-svg-base) npm package
454
-
455
- #### Bug Fixes
456
-
457
- - Fixed draggable clone element position on scroll
458
-
459
- ## 17.1.1-beta (2019-01-29)
460
-
461
- ### Common
462
-
463
- #### Bug Fixes
464
-
465
- - Fixed `e-control` class removed after control refresh issue.
466
-
467
- ## 16.3.30 (2018-10-31)
468
-
469
- ### Common
470
-
471
- #### Bug Fixes
472
-
473
- - Fixed `exporting issue` while complex field value is null.
474
-
475
- ## 16.3.29 (2018-10-31)
476
-
477
- ### Common
478
-
479
- #### New Features
480
-
481
- - Upgraded TypeScript version to 3.0
482
-
483
- ## 16.3.24 (2018-10-09)
484
-
485
- ### Common
486
-
487
- #### Bug Fixes
488
-
489
- - Fixed wrong handler removed from observer on subscribing more than one handler for a property.
490
-
491
- ## 16.3.21 (2018-09-22)
492
-
493
- ### Common
494
-
495
- #### Breaking Changes
496
-
497
- - The individual `npm` package will no longer bundle dependent component's style and global `javascript` source. The online web tool [`CRG`](https://crg.syncfusion.com/) can be used to combine specific set of component and its dependent component global script and styles.
498
-
499
- ## 16.3.17 (2018-09-12)
500
-
501
- ### Common
502
-
503
- #### Breaking Changes
504
-
505
- - The individual `npm` package will no longer bundle dependent component's style and global `javascript` source. The online web tool [`CRG`](https://crg.syncfusion.com/) can be used to combine specific set of component and its dependent component global script and styles.
506
-
507
- ## 16.2.47 (2018-08-07)
508
-
509
- ### Common
510
-
511
- #### Bug Fixes
512
-
513
- - Fixed the First Day of week default index value to 0.
514
-
515
- ## 16.2.41 (2018-06-25)
516
-
517
- ### Common
518
-
519
- #### New Features
520
-
521
- - Provided support for First Day of the Week in Internationalization Library.
522
-
523
- #### Bug Fixes
524
-
525
- - Fixed the compilation issue in Angular Universal.
526
- - Fixed object typing issue for typescript version 2.8.0.
527
-
528
- #### New Features
529
-
530
- - Provided public function [`getComponent`] for getting an instance of current component.
531
- - Provided `N\A support` for an internationalization.
532
-
533
- ## 16.1.38 (2018-05-02)
534
-
535
- ### Common
536
-
537
- #### Bug Fixes
538
-
539
- - Fixed the date parser validation issue for invalid date input.
540
- - Fixed the memory leak issue in the `setImmediate` method.
541
-
542
- ## 16.1.37 (2018-04-24)
543
-
544
- ### Common
545
-
546
- #### Bug Fixes
547
-
548
- - Fixed angular base performance issue.
549
-
550
- ## 16.1.35 (2018-04-17)
551
-
552
- ### Common
553
-
554
- #### New Features
555
-
556
- - **Template**-Provided `elseif` conditional statement for template rendering.
557
-
558
- ### Common
559
-
560
- #### Bug Fixes
561
-
562
- - Fixed the static currency format returned issue on `getNumberPattern` method.
563
-
564
- ## 16.1.33 (2018-04-03)
565
-
566
- ### Common
567
-
568
- #### Bug Fixes
569
-
570
- - Fixed Date Time Parser parsing issue on British Time Zone
571
-
572
- ## 16.1.32 (2018-03-29)
573
-
574
- ### Common
575
-
576
- #### Bug Fixes
577
-
578
- - Fixed C# number formatting issue.
579
-
580
- #### New Features
581
-
582
- - Generating page based unique id for components.
583
-
584
- ## 16.1.30 (2018-03-20)
585
-
586
- ### Common
587
-
588
- #### Bug Fixes
589
-
590
- - Fixed content security policy issue.
591
-
592
- ## 16.1.29 (2018-03-13)
593
-
594
- ### Common
595
-
596
- #### Bug Fixes
597
-
598
- - Fixed `rtl` issue in styles.
599
-
600
- ## 16.1.28 (2018-03-09)
601
-
602
- ### Common
603
-
604
- #### Bug Fixes
605
-
606
- - Fixed `statePersistence` issue in destroyed control destroy.
607
-
608
- ## 16.1.24 (2018-02-22)
609
-
610
- ### Common
611
-
612
- #### New Features
613
-
614
- - Essential JS 2 is now officially released and production ready.
615
- - Angular Universal support added
616
- - New High Contrast theme added
617
- - A web based tool for Custom Resource Generator is released for JavaScript (ES5) users
618
-
619
- #### Breaking Changes
620
-
621
- - Tag prefix for Angular components is changed from `ej` to `ejs`. For example, `ej-grid` is changed to `ejs-grid`.
622
- - **Touch**: Removed `doubleTap` event and added `tapCount` argument in tap event.
623
-
624
- ## 15.4.23-preview (2017-12-27)
625
-
626
- ### Common
627
-
628
- #### New Features
629
-
630
- - Added typing file for ES5 global scripts (`dist/global/index.d.ts`)
631
-
632
- #### Breaking Changes
633
-
634
- - Modified the module bundle file name for ES6 bundling
635
-
636
- #### Bug Fixes
637
-
638
- - Fixed Chinese culture time parsing issue in Date parser
639
-
640
- ## 15.4.21-preview (2017-12-08)
641
-
642
- ### Common
643
-
644
- #### Bug Fixes
645
-
646
- - Fixed enable persistence issue in angular
647
-
648
- ## 15.4.20-preview (2017-12-01)
649
-
650
- ### Common
651
-
652
- #### New Features
653
-
654
- - Upgraded TypeScript version to 2.6.2
655
-
656
- ## 15.4.19-preview (2017-11-23)
657
-
658
- ### Common
659
-
660
- #### Bug Fixes
661
-
662
- - Fixed script error for invalid culture input in L10 library.
663
-
664
- ## 15.4.17-preview (2017-11-13)
665
-
666
- ### Common
667
-
668
- Base library has the following list of libraries which are commonly used by all Essential JS 2 components
669
-
670
- - Internationalization
671
- - Localization
672
- - Animation
673
- - Drag and Drop
674
- - Touch
675
- - Keyboard
676
- - Ripple Effect
677
- - State Persistence
1
+ # Changelog
2
+
3
+ ## [Unreleased]
4
+
5
+ ## 23.2.6 (2023-11-28)
6
+
7
+ ### Common
8
+
9
+ #### Bug Fixes
10
+
11
+ - `#F47826` - Resolved the issue with parsing multiple white space in the template string.
12
+ - `#I521836` - The issue with "A script error occurs when the 'Content-Type' header is not present" has been resolved.
13
+
14
+ ## 23.2.4 (2023-11-20)
15
+
16
+ ### Common
17
+
18
+ #### Bug Fixes
19
+
20
+ - `#I514915` - The issue with "the script error occurs when the RTE component is used inside the v-if directive in the `Vue 2` application" has been resolved.
21
+ - `#I508733` - Negative Currency filtering issue has been fixed.
22
+
23
+ ## 23.1.41 (2023-10-17)
24
+
25
+ ### Common
26
+
27
+ #### Bug Fixes
28
+
29
+ - The issue with the "Tooltip component displays empty string when setting content as '${}'" has been resolved.
30
+ - `#I495294` - The issue with content sanitization in the tooltip component has been resolved
31
+ - `#I504425` - Issue with date parser designator conversion has been fixed.
32
+ - `#I503487` - The issue with the "action failure event argument is not displayed with full error details" has been resolved.
33
+
34
+ ## 23.1.38 (2023-09-26)
35
+
36
+ ### Common
37
+
38
+ #### Bug Fixes
39
+
40
+ - `#I493496` - Up loader file name with special character issue has been fixed.
41
+
42
+ ## 23.1.36 (2023-09-15)
43
+
44
+ ### Common
45
+
46
+ #### New Features
47
+
48
+ - `#F155731` - Provided an option to enable or disable the animation across all Syncfusion components.
49
+
50
+ #### Bug Fixes
51
+
52
+ - Resolved the issue with offline material theme have google fonts.
53
+
54
+ ## 22.2.10 (2023-08-22)
55
+
56
+ ### Common
57
+
58
+ #### Bug Fixes
59
+
60
+ - `#492390` - Resolved the issue with Bold fonts are not included in material theme
61
+
62
+ ## 22.2.9 (2023-08-15)
63
+
64
+ ### Common
65
+
66
+ #### Bug Fixes
67
+
68
+ - `#I476890` - Memory leak issue in syncfusion components when using enable Persistence.
69
+
70
+ ## 22.2.5 (2023-07-27)
71
+
72
+ ### Common
73
+
74
+ #### Bug Fixes
75
+
76
+ - `#479520` - The issue with dragged elements and mouse positions getting misaligned has been resolved.
77
+
78
+ ## 22.1.38 (2023-07-11)
79
+
80
+ ### Common
81
+
82
+ #### New Features
83
+
84
+ - Added UTM parameters.
85
+
86
+ ## 22.1.34 (2023-06-21)
87
+
88
+ ### Common
89
+
90
+ #### New Features
91
+
92
+ - Provided the TypeScript 5 compatible support for the EJ2 components.
93
+
94
+ ## 21.2.9 (2023-06-06)
95
+
96
+ ### Common
97
+
98
+ #### Bug Fixes
99
+
100
+ - `#I461547` - The issue with the "popup showing on the entire page in the Chrome browser on iPad devices" has been resolved.
101
+
102
+ ## 21.1.35 (2023-05-9)
103
+
104
+ ### Common
105
+
106
+ #### Bug Fixes
107
+
108
+ - `#I451675` - The issue in the `template engine` when using `boolean` value has been resolved.
109
+
110
+ ## 21.2.3 (2023-05-03)
111
+
112
+ ### Common
113
+
114
+ #### Bug Fixes
115
+
116
+ - `#F180652` - The issue with the "drag element top value changes after scrolling to browser end" has been resolved.
117
+
118
+ ## 21.1.39 (2023-04-11)
119
+
120
+ ### Common
121
+
122
+ #### Bug Fixes
123
+
124
+ - `#I445928` - The issue with the "`formatNumber` method on internationalization" has been resolved.
125
+
126
+ ## 21.1.38 (2023-04-04)
127
+
128
+ ### Common
129
+
130
+ #### Bug Fixes
131
+
132
+ - `#I440657` - The issue with "Unwanted element is added in `Vue 3` template element" has been resolved.
133
+
134
+ ## 21.1.37 (2023-03-29)
135
+
136
+ ### Common
137
+
138
+ #### Bug Fixes
139
+
140
+ - `#F41815` - Resolved the dragged `card` element and mouse position mismatch issue in `kanban`.
141
+
142
+ ## 21.1.35 (2023-03-23)
143
+
144
+ ### Common
145
+
146
+ #### Bug Fixes
147
+
148
+ - `#I435907` - The issue with the "`drag and drop` on the `ipad` device" has been resolved.
149
+
150
+ ## 20.4.51 (2023-02-21)
151
+
152
+ ### Common
153
+
154
+ #### New Features
155
+
156
+ - `#I421132` - Provided custom format `#,###,, ; (#,###,,)` support for `Numbers` that used in Microsoft Excel's pivot table.
157
+
158
+ ## 20.4.48 (2023-02-01)
159
+
160
+ ### Dashboard Layout
161
+
162
+ #### Bug Fixes
163
+
164
+ - `#I423971` - Provided cancel option in Drag Start and Drag Stop events of the Dashboard Layout component.
165
+
166
+ ### Common
167
+
168
+ #### Bug Fixes
169
+
170
+ - `#I424071` - The issue with the "Tooltip component throws a script error when setting content as '${}'" has been resolved.
171
+
172
+ ## 20.4.44 (2023-01-18)
173
+
174
+ ### Common
175
+
176
+ #### Bug Fixes
177
+
178
+ - `#F178732` - Resolved the sudden changes in top value of `draggable` element.
179
+
180
+ ## 20.4.42 (2023-01-04)
181
+
182
+ ### Common
183
+
184
+ #### Bug Fixes
185
+
186
+ - `#I427250` - Resolved window undefined in server side rendering with React next JS.
187
+
188
+ ## 20.4.38 (2022-12-21)
189
+
190
+ ### Common
191
+
192
+ #### New Features
193
+
194
+ - The new `Rating` control has been added to Essential JS 2.
195
+ - The `AppBar`, `Floating Action Button (FAB)`, `Mention`, `Message` and `Speed Dial` controls have been developed to meet industry standards and are now marked production-ready.
196
+
197
+ #### Breaking Changes
198
+
199
+ - If you are using Syncfusion's controls without first registering a license, a license dialog will appear after a certain limit of usage, preventing further interaction in the application. Please make sure to register a valid license in order to continue using the Syncfusion controls without interruption.
200
+
201
+ ## 20.3.59 (2022-11-29)
202
+
203
+ ### Common
204
+
205
+ #### Bug Fixes
206
+
207
+ - `#I421652` - The issue with the "gulp is added to the dependency package in the ej2 package" has been resolved.
208
+
209
+ ## 20.3.47 (2022-09-29)
210
+
211
+ ### Common
212
+
213
+ #### Bug Fixes
214
+
215
+ - `#I383984` - The issue with the "Unwanted swipe event trigger in Firefox browser" has been resolved.
216
+
217
+ ## 20.2.36 (2022-06-30)
218
+
219
+ ### Common
220
+
221
+ #### New Features
222
+
223
+ - Provided the TypeScript 4.7 compatible support for the EJ2 components.
224
+ - Provided the option to register the license key by using the `npx` command. Follow these steps to register the license using the `npx` command:
225
+
226
+ | The `npx` command |
227
+ |---|
228
+ | Install the Syncfusion packages from `npm`. |
229
+ | Add the license key either in the environment variable `SYNCFUSION_LICENSE` or in the `syncfusion-license.txt` text file. |
230
+ | Run the command `npx syncfusion-license activate` to automatically register the license. |
231
+
232
+ ## 20.1.61 (2022-06-21)
233
+
234
+ ### Common
235
+
236
+ #### Bug Fixes
237
+
238
+ - `#F173517` - "The Chart with ngFor data binding is not working" issue has been resolved.
239
+
240
+ ## 20.1.60 (2022-06-14)
241
+
242
+ ### Common
243
+
244
+ #### Bug Fixes
245
+
246
+ - `#I372767`, `#I370308` - The empty space issue in `Treeview` component while dragging the element has been resolved.
247
+
248
+ ## 20.1.56 (2022-05-17)
249
+
250
+ ### Common
251
+
252
+ #### Bug Fixes
253
+
254
+ - `#F173666` - The issue with sanitize html while creating a appointment in scheduler has been resolve.
255
+
256
+ ## 20.1.55 (2022-05-12)
257
+
258
+ ### Common
259
+
260
+ #### Bug Fixes
261
+
262
+ - `#I376600` - The issue with "`IsDevice` value return as false only for Safari browser in iPad" has been resolved.
263
+
264
+ ## 20.1.50 (2022-04-19)
265
+
266
+ ### Common
267
+
268
+ #### Bug Fixes
269
+
270
+ - `#I370803` - The issue with "Script error occurs while opening the popup in the DropDownList" has been resolved.
271
+
272
+ ## 20.1.48 (2022-04-12)
273
+
274
+ ### Common
275
+
276
+ #### Bug Fixes
277
+
278
+ - `#I374390` - Resolved window undefined in server side rendering with React next JS.
279
+
280
+ ## 20.1.47 (2022-04-04)
281
+
282
+ ### Common
283
+
284
+ #### Bug Fixes
285
+
286
+ - `#I324684` - Resolved the `Treeview` check box issues in safari browser.
287
+ - `#I342741`, `#F172105`, `#I365783`, `#F172867`, `#I367588`, `#I358914` - Provided the `draggable` support for the mobile and touch devices.
288
+
289
+ ### Common
290
+
291
+ #### Bug Fixes
292
+
293
+ - `I324684` - Resolved the `Treeview` check box issues in safari browser.
294
+
295
+ ## 17.4.51 (2020-02-25)
296
+
297
+ ### Common
298
+
299
+ #### Bug Fixes
300
+
301
+ - `I261768` - Resolved script error for invalid custom number formatting.
302
+
303
+ ## 17.4.43 (2020-01-14)
304
+
305
+ ### Common
306
+
307
+ #### Bug Fixes
308
+
309
+ - `#I254197`, `#I255889`, `#I257234`, `#I257859`, `#I258137`, `#I259025`, `#I260213`, `#I260331` - Resolved Compilation issue with Typescript Latest version.
310
+ - Resolved Server side `updateModel` method is called for each child property in `blazor`.
311
+
312
+ ## 17.4.41 (2020-01-07)
313
+
314
+ ### Common
315
+
316
+ #### Bug Fixes
317
+
318
+ - `#I256528` - Resolved `draggable` issue `out` event not triggered.
319
+ - `#F149410` - Resolved `drag and drop` function not working `firefox` browser version 60.8 .
320
+ - `#I258661` - Resolved `LoadCldr` is not working issue.
321
+ - `#I258471` - Improvement the `drag and drop` library performance .
322
+
323
+ ## 17.2.49 (2019-09-04)
324
+
325
+ ### Common
326
+
327
+ #### Bug Fixes
328
+
329
+ - Resolved `draggable` issue while setting `clone` as `false`.
330
+
331
+ ## 17.2.47 (2019-08-27)
332
+
333
+ ### Common
334
+
335
+ #### Bug Fixes
336
+
337
+ - `#I234975` - Resolved template Engine support is not working while passing double slash `(\\)`.
338
+ - `#I242062` - Resolved template Engine support is not working while using Special characters `(@)` in more than one occurrence.
339
+
340
+ ## 17.2.46 (2019-08-22)
341
+
342
+ ### Common
343
+
344
+ #### Bug Fixes
345
+
346
+ - Resolved template Engine support is not working while using Special characters `(@)` in `if` condition.
347
+
348
+ ## 17.2.40 (2019-08-06)
349
+
350
+ ### Common
351
+
352
+ #### Bug Fixes
353
+
354
+ - `#I240696` - Resolved drag issue for actual drag element for scrolled parent element.
355
+ - `#I237495` - Fixed template engine support is not working while passing an array of value within the object.
356
+
357
+ ## 17.2.39 (2019-07-30)
358
+
359
+ ### Common
360
+
361
+ #### Bug Fixes
362
+
363
+ - `#I242062` - Resolved Special characters `(@)` are not working for template Engine support.
364
+
365
+ ## 17.1.49 (2019-05-29)
366
+
367
+ ### Common
368
+
369
+ #### Bug Fixes
370
+
371
+ - Fixed `parseDate` method returns invalid value when parsing `mm/yyyy` date format.
372
+
373
+ ## 17.1.48 (2019-05-21)
374
+
375
+ ### Common
376
+
377
+ #### Bug Fixes
378
+
379
+ - Resolved Multiple space between class Names for template Engine support.
380
+
381
+ #### New Features
382
+
383
+ - Added the `httpRequest` argument to Ajax `beforeSend` event arguments.
384
+
385
+ ## 17.1.43 (2019-04-30)
386
+
387
+ ### Common
388
+
389
+ #### Bug Fixes
390
+
391
+ - #142628, #143613 - Fixed `template` string evaluation malfunctions in `template` engine.
392
+ - #226430 - Resolved Drag not working in IE browser issue.
393
+
394
+ ## 17.1.38 (2019-03-29)
395
+
396
+ ### Common
397
+
398
+ #### New Features
399
+
400
+ - Provided the Bootstrap 4 support
401
+
402
+ ## 17.1.32-beta (2019-03-13)
403
+
404
+ ### Common
405
+
406
+ #### Bug Fixes
407
+
408
+ - #I234200 - Fixed `GetConstant` method does not return correct value when passing 0 as a value in localization.
409
+
410
+ #### New Features
411
+
412
+ - Provided support for evaluate script from Ajax request in Dom Library.
413
+
414
+ #### Breaking Changes
415
+
416
+ - ej2 icons has been split-up based on theme names and icons moved to separate npm package ej2-icons
417
+ - canvas and svg render base functionalities moved to [ej2-svg-base](https://www.npmjs.com/package/@syncfusion/ej2-svg-base) npm package
418
+
419
+ #### Bug Fixes
420
+
421
+ - Fixed draggable clone element position on scroll
422
+
423
+ ## 17.1.1-beta (2019-01-29)
424
+
425
+ ### Common
426
+
427
+ #### Bug Fixes
428
+
429
+ - Fixed `e-control` class removed after control refresh issue.
430
+
431
+ ## 16.3.30 (2018-10-31)
432
+
433
+ ### Common
434
+
435
+ #### Bug Fixes
436
+
437
+ - Fixed `exporting issue` while complex field value is null.
438
+
439
+ ## 16.3.29 (2018-10-31)
440
+
441
+ ### Common
442
+
443
+ #### New Features
444
+
445
+ - Upgraded TypeScript version to 3.0
446
+
447
+ ## 16.3.24 (2018-10-09)
448
+
449
+ ### Common
450
+
451
+ #### Bug Fixes
452
+
453
+ - Fixed wrong handler removed from observer on subscribing more than one handler for a property.
454
+
455
+ ## 16.3.21 (2018-09-22)
456
+
457
+ ### Common
458
+
459
+ #### Breaking Changes
460
+
461
+ - The individual `npm` package will no longer bundle dependent component's style and global `javascript` source. The online web tool [`CRG`](https://crg.syncfusion.com/) can be used to combine specific set of component and its dependent component global script and styles.
462
+
463
+ ## 16.3.17 (2018-09-12)
464
+
465
+ ### Common
466
+
467
+ #### Breaking Changes
468
+
469
+ - The individual `npm` package will no longer bundle dependent component's style and global `javascript` source. The online web tool [`CRG`](https://crg.syncfusion.com/) can be used to combine specific set of component and its dependent component global script and styles.
470
+
471
+ ## 16.2.47 (2018-08-07)
472
+
473
+ ### Common
474
+
475
+ #### Bug Fixes
476
+
477
+ - Fixed the First Day of week default index value to 0.
478
+
479
+ ## 16.2.41 (2018-06-25)
480
+
481
+ ### Common
482
+
483
+ #### New Features
484
+
485
+ - Provided support for First Day of the Week in Internationalization Library.
486
+
487
+ #### Bug Fixes
488
+
489
+ - Fixed the compilation issue in Angular Universal.
490
+ - Fixed object typing issue for typescript version 2.8.0.
491
+
492
+ #### New Features
493
+
494
+ - Provided public function [`getComponent`] for getting an instance of current component.
495
+ - Provided `N\A support` for an internationalization.
496
+
497
+ ## 16.1.38 (2018-05-02)
498
+
499
+ ### Common
500
+
501
+ #### Bug Fixes
502
+
503
+ - Fixed the date parser validation issue for invalid date input.
504
+ - Fixed the memory leak issue in the `setImmediate` method.
505
+
506
+ ## 16.1.37 (2018-04-24)
507
+
508
+ ### Common
509
+
510
+ #### Bug Fixes
511
+
512
+ - Fixed angular base performance issue.
513
+
514
+ ## 16.1.35 (2018-04-17)
515
+
516
+ ### Common
517
+
518
+ #### New Features
519
+
520
+ - **Template**-Provided `elseif` conditional statement for template rendering.
521
+
522
+ ### Common
523
+
524
+ #### Bug Fixes
525
+
526
+ - Fixed the static currency format returned issue on `getNumberPattern` method.
527
+
528
+ ## 16.1.33 (2018-04-03)
529
+
530
+ ### Common
531
+
532
+ #### Bug Fixes
533
+
534
+ - Fixed Date Time Parser parsing issue on British Time Zone
535
+
536
+ ## 16.1.32 (2018-03-29)
537
+
538
+ ### Common
539
+
540
+ #### Bug Fixes
541
+
542
+ - Fixed C# number formatting issue.
543
+
544
+ #### New Features
545
+
546
+ - Generating page based unique id for components.
547
+
548
+ ## 16.1.30 (2018-03-20)
549
+
550
+ ### Common
551
+
552
+ #### Bug Fixes
553
+
554
+ - Fixed content security policy issue.
555
+
556
+ ## 16.1.29 (2018-03-13)
557
+
558
+ ### Common
559
+
560
+ #### Bug Fixes
561
+
562
+ - Fixed `rtl` issue in styles.
563
+
564
+ ## 16.1.28 (2018-03-09)
565
+
566
+ ### Common
567
+
568
+ #### Bug Fixes
569
+
570
+ - Fixed `statePersistence` issue in destroyed control destroy.
571
+
572
+ ## 16.1.24 (2018-02-22)
573
+
574
+ ### Common
575
+
576
+ #### New Features
577
+
578
+ - Essential JS 2 is now officially released and production ready.
579
+ - Angular Universal support added
580
+ - New High Contrast theme added
581
+ - A web based tool for Custom Resource Generator is released for JavaScript (ES5) users
582
+
583
+ #### Breaking Changes
584
+
585
+ - Tag prefix for Angular components is changed from `ej` to `ejs`. For example, `ej-grid` is changed to `ejs-grid`.
586
+ - **Touch**: Removed `doubleTap` event and added `tapCount` argument in tap event.
587
+
588
+ ## 15.4.23-preview (2017-12-27)
589
+
590
+ ### Common
591
+
592
+ #### New Features
593
+
594
+ - Added typing file for ES5 global scripts (`dist/global/index.d.ts`)
595
+
596
+ #### Breaking Changes
597
+
598
+ - Modified the module bundle file name for ES6 bundling
599
+
600
+ #### Bug Fixes
601
+
602
+ - Fixed Chinese culture time parsing issue in Date parser
603
+
604
+ ## 15.4.21-preview (2017-12-08)
605
+
606
+ ### Common
607
+
608
+ #### Bug Fixes
609
+
610
+ - Fixed enable persistence issue in angular
611
+
612
+ ## 15.4.20-preview (2017-12-01)
613
+
614
+ ### Common
615
+
616
+ #### New Features
617
+
618
+ - Upgraded TypeScript version to 2.6.2
619
+
620
+ ## 15.4.19-preview (2017-11-23)
621
+
622
+ ### Common
623
+
624
+ #### Bug Fixes
625
+
626
+ - Fixed script error for invalid culture input in L10 library.
627
+
628
+ ## 15.4.17-preview (2017-11-13)
629
+
630
+ ### Common
631
+
632
+ Base library has the following list of libraries which are commonly used by all Essential JS 2 components
633
+
634
+ - Internationalization
635
+ - Localization
636
+ - Animation
637
+ - Drag and Drop
638
+ - Touch
639
+ - Keyboard
640
+ - Ripple Effect
641
+ - State Persistence