@syncfusion/ej2-base 19.4.52 → 20.1.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/CHANGELOG.md +0 -22
- package/README.md +2 -2
- 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 +203 -11
- package/dist/es6/ej2-base.es2015.js.map +1 -1
- package/dist/es6/ej2-base.es5.js +206 -10
- 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 +6 -6
- package/src/component-model.d.ts +1 -1
- package/src/component.d.ts +1 -1
- package/src/component.js +2 -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 +1 -1
- package/src/template-engine.js +2 -2
- package/src/template.js +1 -1
- 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
|
@@ -6,28 +6,6 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
-
- Resolved the svg template issue in template compilation
|
|
10
|
-
|
|
11
|
-
### Common
|
|
12
|
-
|
|
13
|
-
#### New Features
|
|
14
|
-
|
|
15
|
-
- `I360098` - Provided the Space Grouping support for Custom Number format.
|
|
16
|
-
|
|
17
|
-
## 19.4.42 (2022-01-11)
|
|
18
|
-
|
|
19
|
-
### Common
|
|
20
|
-
|
|
21
|
-
#### Bug Fixes
|
|
22
|
-
|
|
23
|
-
- `I339589` - Resolved the `DropdownButton` issue with react component as target.
|
|
24
|
-
|
|
25
|
-
## 19.4.38 (2021-12-17)
|
|
26
|
-
|
|
27
|
-
### Common
|
|
28
|
-
|
|
29
|
-
#### Bug Fixes
|
|
30
|
-
|
|
31
9
|
- `I324684` - Resolved the `Treeview` check box issues in safari browser.
|
|
32
10
|
|
|
33
11
|
## 17.4.51 (2020-02-25)
|
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
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.
|