@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.
- package/.eslintrc.json +1 -1
- package/CHANGELOG.md +1 -89
- package/README.md +1 -1
- package/dist/ej2-base.umd.min.js +2 -2
- package/dist/ej2-base.umd.min.js.map +1 -1
- package/dist/es6/ej2-base.es2015.js +2650 -2401
- package/dist/es6/ej2-base.es2015.js.map +1 -1
- package/dist/es6/ej2-base.es5.js +3186 -2948
- package/dist/es6/ej2-base.es5.js.map +1 -1
- package/dist/global/ej2-base.min.js +2 -2
- package/dist/global/ej2-base.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/e2e/crypto.js +1 -1
- package/e2e/index.d.ts +0 -3
- package/e2e/m.protractor.config.js +1 -1
- package/e2e/protractor.config.js +1 -1
- package/helpers/e2e/base.js +3 -3
- package/package.json +7 -64
- package/src/ajax.d.ts +24 -10
- package/src/ajax.js +14 -6
- package/src/animation-model.d.ts +12 -4
- package/src/animation.d.ts +37 -12
- package/src/animation.js +48 -22
- package/src/base.d.ts +31 -11
- package/src/base.js +34 -16
- package/src/browser.d.ts +63 -25
- package/src/browser.js +60 -15
- package/src/child-property.d.ts +21 -10
- package/src/child-property.js +23 -13
- package/src/component-model.d.ts +4 -1
- package/src/component.d.ts +42 -5
- package/src/component.js +52 -35
- package/src/dom.d.ts +76 -25
- package/src/dom.js +128 -124
- package/src/draggable-model.d.ts +5 -0
- package/src/draggable.d.ts +4 -1
- package/src/draggable.js +8 -2
- package/src/droppable-model.d.ts +7 -4
- package/src/droppable.d.ts +7 -3
- package/src/droppable.js +1 -0
- package/src/event-handler.d.ts +10 -6
- package/src/event-handler.js +11 -7
- package/src/hijri-parser.d.ts +12 -0
- package/src/hijri-parser.js +111 -90
- package/src/internationalization.d.ts +54 -21
- package/src/internationalization.js +55 -18
- package/src/intl/date-formatter.d.ts +19 -8
- package/src/intl/date-formatter.js +36 -13
- package/src/intl/date-parser.d.ts +30 -23
- package/src/intl/date-parser.js +61 -42
- package/src/intl/intl-base.d.ts +123 -46
- package/src/intl/intl-base.js +451 -377
- package/src/intl/number-formatter.d.ts +45 -34
- package/src/intl/number-formatter.js +47 -35
- package/src/intl/number-parser.d.ts +11 -8
- package/src/intl/number-parser.js +14 -11
- package/src/intl/parser-base.d.ts +38 -13
- package/src/intl/parser-base.js +45 -16
- package/src/keyboard-model.d.ts +5 -2
- package/src/keyboard.d.ts +26 -8
- package/src/keyboard.js +24 -9
- package/src/l10n.d.ts +16 -7
- package/src/l10n.js +16 -7
- package/src/module-loader.d.ts +13 -8
- package/src/module-loader.js +13 -9
- package/src/notify-property-change.d.ts +19 -7
- package/src/notify-property-change.js +140 -24
- package/src/observer.d.ts +17 -5
- package/src/observer.js +19 -7
- package/src/sanitize-helper.d.ts +1 -0
- package/src/sanitize-helper.js +1 -1
- package/src/template-engine.d.ts +30 -4
- package/src/template-engine.js +37 -12
- package/src/template.d.ts +8 -3
- package/src/template.js +67 -19
- package/src/touch-model.d.ts +11 -4
- package/src/touch.d.ts +51 -9
- package/src/touch.js +45 -13
- package/src/util.d.ts +67 -37
- package/src/util.js +99 -49
- package/styles/_bootstrap-definition.scss +0 -1
- package/styles/_bootstrap5-dark-definition.scss +10 -0
- package/styles/_bootstrap5-definition.scss +9 -0
- package/styles/_fabric-dark-definition.scss +0 -1
- package/styles/_highcontrast-light-definition.scss +1 -0
- package/styles/_material-definition.scss +1 -0
- package/styles/bootstrap-dark.css +2613 -32
- package/styles/bootstrap.css +2613 -32
- package/styles/bootstrap4.css +2149 -32
- package/styles/bootstrap5-dark.css +2157 -0
- package/styles/bootstrap5-dark.scss +3 -0
- package/styles/bootstrap5.css +2157 -0
- package/styles/bootstrap5.scss +3 -0
- package/styles/common/_core.scss +28 -63
- package/styles/definition/_bootstrap-dark.scss +3 -3
- package/styles/definition/_bootstrap.scss +1 -1
- package/styles/definition/_bootstrap5-dark.scss +357 -0
- package/styles/definition/_bootstrap5.scss +356 -0
- package/styles/definition/_material-dark.scss +1 -1
- package/styles/definition/_tailwind-dark.scss +18 -1
- package/styles/definition/_tailwind.scss +17 -0
- package/styles/fabric-dark.css +2589 -32
- package/styles/fabric.css +2589 -32
- package/styles/highcontrast-light.css +2573 -32
- package/styles/highcontrast.css +2573 -32
- package/styles/material-dark.css +2549 -32
- package/styles/material.css +2549 -32
- package/styles/tailwind-dark.css +2221 -32
- package/styles/tailwind.css +2221 -32
- package/src/virtual-dom.d.ts +0 -32
- package/src/virtual-dom.js +0 -449
package/.eslintrc.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -6,95 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
-
- `
|
|
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