@syncfusion/ej2-base 19.4.48 → 20.1.48
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/CHANGELOG.md +3 -4
- package/README.md +3 -3
- 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 +208 -12
- package/dist/es6/ej2-base.es2015.js.map +1 -1
- package/dist/es6/ej2-base.es5.js +212 -12
- 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/package.json +7 -58
- package/src/component-model.d.ts +1 -1
- package/src/component.d.ts +1 -1
- package/src/component.js +4 -5
- package/src/draggable.js +3 -0
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/intl/intl-base.js +6 -4
- package/src/template-engine.js +2 -2
- package/src/util.d.ts +4 -0
- package/src/util.js +4 -0
- package/src/validate-lic.d.ts +7 -0
- package/src/validate-lic.js +194 -0
- package/styles/bootstrap-dark.css +17 -32
- package/styles/bootstrap.css +17 -32
- package/styles/bootstrap4.css +17 -32
- package/styles/bootstrap5-dark.css +17 -32
- package/styles/bootstrap5.css +17 -32
- package/styles/common/_core.scss +0 -32
- package/styles/definition/_fluent-dark.scss +2 -2
- package/styles/definition/_fluent.scss +1 -1
- package/styles/fabric-dark.css +17 -32
- package/styles/fabric.css +17 -32
- package/styles/fluent-dark.css +2177 -0
- package/styles/fluent-dark.scss +3 -0
- package/styles/fluent.css +2177 -0
- package/styles/fluent.scss +3 -0
- package/styles/highcontrast-light.css +17 -32
- package/styles/highcontrast.css +17 -32
- package/styles/material-dark.css +17 -32
- package/styles/material.css +17 -32
- package/styles/tailwind-dark.css +587 -614
- package/styles/tailwind.css +587 -614
package/CHANGELOG.md
CHANGED
|
@@ -2,21 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
## 19.4.42 (2022-01-11)
|
|
6
|
-
|
|
7
5
|
### Common
|
|
8
6
|
|
|
9
7
|
#### Bug Fixes
|
|
10
8
|
|
|
11
|
-
- `
|
|
9
|
+
- `I374390` - Resolved window undefined in server side rendering with React next JS.
|
|
12
10
|
|
|
13
|
-
##
|
|
11
|
+
## 20.1.47 (2022-04-04)
|
|
14
12
|
|
|
15
13
|
### Common
|
|
16
14
|
|
|
17
15
|
#### Bug Fixes
|
|
18
16
|
|
|
19
17
|
- `I324684` - Resolved the `Treeview` check box issues in safari browser.
|
|
18
|
+
- `I342741`, `F172105`, `SF-365783`, `F172867`, `SF-367588`, `SF-358914` - Provided the `draggable` support for the mobile and touch devices.
|
|
20
19
|
|
|
21
20
|
## 17.4.51 (2020-02-25)
|
|
22
21
|
|
package/README.md
CHANGED
|
@@ -91,11 +91,11 @@ Product support is available for through following mediums.
|
|
|
91
91
|
|
|
92
92
|
## License
|
|
93
93
|
|
|
94
|
-
Check the license detail [here](https://github.com/syncfusion/ej2-
|
|
94
|
+
Check the license detail [here](https://github.com/syncfusion/ej2-base/blob/master/license).
|
|
95
95
|
|
|
96
96
|
## Changelog
|
|
97
97
|
|
|
98
|
-
Check the changelog [here](https://ej2.syncfusion.com/documentation/release-notes
|
|
98
|
+
Check the changelog [here](https://ej2.syncfusion.com/documentation/release-notes?utm_source=npm&utm_campaign=ej2-base)
|
|
99
99
|
|
|
100
|
-
© Copyright
|
|
100
|
+
© Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|
|
101
101
|
The Syncfusion Essential Studio license and copyright applies to this distribution.
|