@syncfusion/ej2-base 19.2.55 → 19.3.47

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 (111) hide show
  1. package/.eslintrc.json +1 -1
  2. package/CHANGELOG.md +1 -89
  3. package/README.md +1 -1
  4. package/dist/ej2-base.umd.min.js +2 -2
  5. package/dist/ej2-base.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-base.es2015.js +2650 -2401
  7. package/dist/es6/ej2-base.es2015.js.map +1 -1
  8. package/dist/es6/ej2-base.es5.js +3186 -2948
  9. package/dist/es6/ej2-base.es5.js.map +1 -1
  10. package/dist/global/ej2-base.min.js +2 -2
  11. package/dist/global/ej2-base.min.js.map +1 -1
  12. package/dist/global/index.d.ts +1 -1
  13. package/e2e/crypto.js +1 -1
  14. package/e2e/index.d.ts +0 -3
  15. package/e2e/m.protractor.config.js +1 -1
  16. package/e2e/protractor.config.js +1 -1
  17. package/helpers/e2e/base.js +3 -3
  18. package/package.json +7 -64
  19. package/src/ajax.d.ts +24 -10
  20. package/src/ajax.js +14 -6
  21. package/src/animation-model.d.ts +12 -4
  22. package/src/animation.d.ts +37 -12
  23. package/src/animation.js +48 -22
  24. package/src/base.d.ts +31 -11
  25. package/src/base.js +34 -16
  26. package/src/browser.d.ts +63 -25
  27. package/src/browser.js +60 -15
  28. package/src/child-property.d.ts +21 -10
  29. package/src/child-property.js +23 -13
  30. package/src/component-model.d.ts +4 -1
  31. package/src/component.d.ts +42 -5
  32. package/src/component.js +52 -35
  33. package/src/dom.d.ts +76 -25
  34. package/src/dom.js +128 -124
  35. package/src/draggable-model.d.ts +5 -0
  36. package/src/draggable.d.ts +4 -1
  37. package/src/draggable.js +8 -2
  38. package/src/droppable-model.d.ts +7 -4
  39. package/src/droppable.d.ts +7 -3
  40. package/src/droppable.js +1 -0
  41. package/src/event-handler.d.ts +10 -6
  42. package/src/event-handler.js +11 -7
  43. package/src/hijri-parser.d.ts +12 -0
  44. package/src/hijri-parser.js +111 -90
  45. package/src/internationalization.d.ts +54 -21
  46. package/src/internationalization.js +55 -18
  47. package/src/intl/date-formatter.d.ts +19 -8
  48. package/src/intl/date-formatter.js +36 -13
  49. package/src/intl/date-parser.d.ts +30 -23
  50. package/src/intl/date-parser.js +61 -42
  51. package/src/intl/intl-base.d.ts +123 -46
  52. package/src/intl/intl-base.js +451 -377
  53. package/src/intl/number-formatter.d.ts +45 -34
  54. package/src/intl/number-formatter.js +47 -35
  55. package/src/intl/number-parser.d.ts +11 -8
  56. package/src/intl/number-parser.js +14 -11
  57. package/src/intl/parser-base.d.ts +38 -13
  58. package/src/intl/parser-base.js +45 -16
  59. package/src/keyboard-model.d.ts +5 -2
  60. package/src/keyboard.d.ts +26 -8
  61. package/src/keyboard.js +24 -9
  62. package/src/l10n.d.ts +16 -7
  63. package/src/l10n.js +16 -7
  64. package/src/module-loader.d.ts +13 -8
  65. package/src/module-loader.js +13 -9
  66. package/src/notify-property-change.d.ts +19 -7
  67. package/src/notify-property-change.js +140 -24
  68. package/src/observer.d.ts +17 -5
  69. package/src/observer.js +19 -7
  70. package/src/sanitize-helper.d.ts +1 -0
  71. package/src/sanitize-helper.js +1 -1
  72. package/src/template-engine.d.ts +30 -4
  73. package/src/template-engine.js +37 -12
  74. package/src/template.d.ts +8 -3
  75. package/src/template.js +67 -19
  76. package/src/touch-model.d.ts +11 -4
  77. package/src/touch.d.ts +51 -9
  78. package/src/touch.js +45 -13
  79. package/src/util.d.ts +67 -37
  80. package/src/util.js +99 -49
  81. package/styles/_bootstrap-definition.scss +0 -1
  82. package/styles/_bootstrap5-dark-definition.scss +10 -0
  83. package/styles/_bootstrap5-definition.scss +9 -0
  84. package/styles/_fabric-dark-definition.scss +0 -1
  85. package/styles/_highcontrast-light-definition.scss +1 -0
  86. package/styles/_material-definition.scss +1 -0
  87. package/styles/bootstrap-dark.css +2613 -32
  88. package/styles/bootstrap.css +2613 -32
  89. package/styles/bootstrap4.css +2149 -32
  90. package/styles/bootstrap5-dark.css +2157 -0
  91. package/styles/bootstrap5-dark.scss +3 -0
  92. package/styles/bootstrap5.css +2157 -0
  93. package/styles/bootstrap5.scss +3 -0
  94. package/styles/common/_core.scss +28 -63
  95. package/styles/definition/_bootstrap-dark.scss +3 -3
  96. package/styles/definition/_bootstrap.scss +1 -1
  97. package/styles/definition/_bootstrap5-dark.scss +357 -0
  98. package/styles/definition/_bootstrap5.scss +356 -0
  99. package/styles/definition/_material-dark.scss +1 -1
  100. package/styles/definition/_tailwind-dark.scss +18 -1
  101. package/styles/definition/_tailwind.scss +17 -0
  102. package/styles/fabric-dark.css +2589 -32
  103. package/styles/fabric.css +2589 -32
  104. package/styles/highcontrast-light.css +2573 -32
  105. package/styles/highcontrast.css +2573 -32
  106. package/styles/material-dark.css +2549 -32
  107. package/styles/material.css +2549 -32
  108. package/styles/tailwind-dark.css +2221 -32
  109. package/styles/tailwind.css +2221 -32
  110. package/src/virtual-dom.d.ts +0 -32
  111. package/src/virtual-dom.js +0 -449
package/.eslintrc.json CHANGED
@@ -241,4 +241,4 @@
241
241
  }
242
242
  }
243
243
  ]
244
- }
244
+ }
package/CHANGELOG.md CHANGED
@@ -6,95 +6,7 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
- - `I306072` - Resolved Dashboard Layout floating panel issue.
10
-
11
- ## 19.2.49 (2021-07-27)
12
-
13
- ### Common
14
-
15
- #### Bug Fixes
16
-
17
- - `I336794`,`I336872`, `I336649` - Resolved the issue with Template Compilation malfunctions when value have special character apostrophe.
18
-
19
- ## 19.2.48 (2021-07-20)
20
-
21
- ### Common
22
-
23
- #### Bug Fixes
24
-
25
- - `I327143`,`I332883` - Resolved the issue with Template Compilation malfunctions when value have special character apostrophe.
26
-
27
- ## 19.1.64 (2021-05-19)
28
-
29
- ### Common
30
-
31
- #### Bug Fixes
32
-
33
- - `I323536` - Resolved Negative decimal value without zero parses into non-decimal values.
34
-
35
- ## 19.1.57 (2021-04-20)
36
-
37
- ### Common
38
-
39
- #### Bug Fixes
40
-
41
- - `F163648` - Resolved the day periods not parsing lower case (am/pm) issue.
42
-
43
- ## 19.1.56 (2021-04-13)
44
-
45
- ### Common
46
-
47
- #### Bug Fixes
48
-
49
- - Resolved Unwanted Swipe event trigger in Firefox only on `Mac` machines.
50
-
51
- ## 19.1.54 (2021-03-30)
52
-
53
- ### Common
54
-
55
- #### New Features
56
-
57
- - Provided Optional prefix addition support for Template function.
58
-
59
- ## 18.3.52 (2020-12-01)
60
-
61
- ### Common
62
-
63
- #### New Features
64
-
65
- - Provided version based state persistence support.
66
-
67
- ### Common
68
-
69
- #### Bug Fixes
70
-
71
- - Script error throws on expanding node in `TreeView` while using HTML id contains `#` has been fixed.
72
-
73
- ## 18.3.48 (2020-11-11)
74
-
75
- ### Common
76
-
77
- #### Bug Fixes
78
-
79
- - Resolved `Accuracy` issue - while drag faster, Cursor and clone element have some distance gap.
80
-
81
- ## 18.3.44 (2020-10-27)
82
-
83
- ### Common
84
-
85
- #### Bug Fixes
86
-
87
- - `I291462` - Resolved CSS Dimension Properties not accepts `viewport` and `em`.
88
- - `F158279` - Resolved `Draggable` element jumps out of the view while scrolling.
89
- - `I292035` - Resolved Touch functionality is not working with draggable.
90
-
91
- ## 18.3.40 (2020-10-13)
92
-
93
- ### Common
94
-
95
- #### Bug Fixes
96
-
97
- - `F16367` - Resolved `& ampersand` symbol produce the issue, while `enableHTMLSanitizer` set to true.
9
+ - `I324684` - Resolved the `Treeview` check box issues in safari browser.
98
10
 
99
11
  ## 17.4.51 (2020-02-25)
100
12
 
package/README.md CHANGED
@@ -8,7 +8,7 @@ A common package of Essential JS 2 which contains base libraries, methods and cl
8
8
 
9
9
  ## Setup
10
10
 
11
- To install `ej2-base`, use the following command
11
+ To install `ej2-base`, use the following command.
12
12
 
13
13
  ```sh
14
14
  npm install @syncfusion/ej2-base