@syncfusion/ej2-base 19.2.60 → 19.3.54

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 +2 -91
  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 +2647 -2398
  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 -88
  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 +126 -121
  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 +13 -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 +66 -18
  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 -1
  88. package/styles/bootstrap.css +2613 -1
  89. package/styles/bootstrap4.css +2149 -1
  90. package/styles/bootstrap5-dark.css +2192 -0
  91. package/styles/bootstrap5-dark.scss +3 -0
  92. package/styles/bootstrap5.css +2192 -0
  93. package/styles/bootstrap5.scss +3 -0
  94. package/styles/common/_core.scss +32 -31
  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 -1
  103. package/styles/fabric.css +2589 -1
  104. package/styles/highcontrast-light.css +2573 -1
  105. package/styles/highcontrast.css +2573 -1
  106. package/styles/material-dark.css +2549 -1
  107. package/styles/material.css +2549 -1
  108. package/styles/tailwind-dark.css +2221 -1
  109. package/styles/tailwind.css +2221 -1
  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,104 +6,15 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
- - `F168046` - Resolved Template Compilation malfunction when value have hyphen special character.
10
9
  - `I339954` - Resolved the issue with Template compilation malfunctions when `href` value is empty.
11
10
 
12
- ## 19.2.51 (2021-08-03)
11
+ ## 19.3.47 (2021-10-26)
13
12
 
14
13
  ### Common
15
14
 
16
15
  #### Bug Fixes
17
16
 
18
- - `I306072` - Resolved Dashboard Layout floating panel issue.
19
-
20
- ## 19.2.49 (2021-07-27)
21
-
22
- ### Common
23
-
24
- #### Bug Fixes
25
-
26
- - `I336794`,`I336872`, `I336649` - Resolved the issue with Template Compilation malfunctions when value have special character apostrophe.
27
-
28
- ## 19.2.48 (2021-07-20)
29
-
30
- ### Common
31
-
32
- #### Bug Fixes
33
-
34
- - `I327143`,`I332883` - Resolved the issue with Template Compilation malfunctions when value have special character apostrophe.
35
-
36
- ## 19.1.64 (2021-05-19)
37
-
38
- ### Common
39
-
40
- #### Bug Fixes
41
-
42
- - `I323536` - Resolved Negative decimal value without zero parses into non-decimal values.
43
-
44
- ## 19.1.57 (2021-04-20)
45
-
46
- ### Common
47
-
48
- #### Bug Fixes
49
-
50
- - `F163648` - Resolved the day periods not parsing lower case (am/pm) issue.
51
-
52
- ## 19.1.56 (2021-04-13)
53
-
54
- ### Common
55
-
56
- #### Bug Fixes
57
-
58
- - Resolved Unwanted Swipe event trigger in Firefox only on `Mac` machines.
59
-
60
- ## 19.1.54 (2021-03-30)
61
-
62
- ### Common
63
-
64
- #### New Features
65
-
66
- - Provided Optional prefix addition support for Template function.
67
-
68
- ## 18.3.52 (2020-12-01)
69
-
70
- ### Common
71
-
72
- #### New Features
73
-
74
- - Provided version based state persistence support.
75
-
76
- ### Common
77
-
78
- #### Bug Fixes
79
-
80
- - Script error throws on expanding node in `TreeView` while using HTML id contains `#` has been fixed.
81
-
82
- ## 18.3.48 (2020-11-11)
83
-
84
- ### Common
85
-
86
- #### Bug Fixes
87
-
88
- - Resolved `Accuracy` issue - while drag faster, Cursor and clone element have some distance gap.
89
-
90
- ## 18.3.44 (2020-10-27)
91
-
92
- ### Common
93
-
94
- #### Bug Fixes
95
-
96
- - `I291462` - Resolved CSS Dimension Properties not accepts `viewport` and `em`.
97
- - `F158279` - Resolved `Draggable` element jumps out of the view while scrolling.
98
- - `I292035` - Resolved Touch functionality is not working with draggable.
99
-
100
- ## 18.3.40 (2020-10-13)
101
-
102
- ### Common
103
-
104
- #### Bug Fixes
105
-
106
- - `F16367` - Resolved `& ampersand` symbol produce the issue, while `enableHTMLSanitizer` set to true.
17
+ - `I324684` - Resolved the `Treeview` check box issues in safari browser.
107
18
 
108
19
  ## 17.4.51 (2020-02-25)
109
20
 
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