@syncfusion/ej2-react-treemap 20.1.55 → 20.2.38

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 CHANGED
@@ -11,12 +11,6 @@
11
11
 
12
12
  ## [Unreleased]
13
13
 
14
- ### TreeMap
15
-
16
- #### Bug Fixes
17
-
18
- - `#I377352` - The samples in the TreeMap sample browser can now be edited in the StackBlitz.
19
-
20
14
  ## 18.2.44 (2020-07-07)
21
15
 
22
16
  ### TreeMap
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-react-treemap.umd.min.js
3
- * version : 20.1.55
3
+ * version : 20.2.38
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-react-treemap@*",
3
- "_id": "@syncfusion/ej2-react-treemap@20.1.47",
3
+ "_id": "@syncfusion/ej2-react-treemap@20.2.36",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-Z1oSJvy9sJ1RA10LozQax8Sy79NdCP9XCP0kaz8NPVxZ/T9ky/nfvsU7BsNF/eNQ+hiYBOKodDC5X4IPdh1J3Q==",
5
+ "_integrity": "sha512-0XlJ4ImRnIvxRv5pgMjnHFf/d5rZRAJERsHmEPOgNEvffjCBKFae2sMedm5z7HrjfUvVFzomiM2X7qA4UdHndQ==",
6
6
  "_location": "/@syncfusion/ej2-react-treemap",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-react-treemap/-/ej2-react-treemap-20.1.47.tgz",
23
- "_shasum": "abd858e7c6ccbb5734a99ea4a88a9d7a7801d1e1",
22
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-react-treemap/-/ej2-react-treemap-20.2.36.tgz",
23
+ "_shasum": "60bf3f131410ca80095d93aaf7864fa822980704",
24
24
  "_spec": "@syncfusion/ej2-react-treemap@*",
25
25
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
26
26
  "author": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-base": "~20.1.55",
35
- "@syncfusion/ej2-react-base": "~20.1.55",
36
- "@syncfusion/ej2-treemap": "20.1.55"
34
+ "@syncfusion/ej2-base": "~20.2.38",
35
+ "@syncfusion/ej2-react-base": "~20.2.38",
36
+ "@syncfusion/ej2-treemap": "20.2.38"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Essential JS 2 TreeMap Components for React",
@@ -70,6 +70,6 @@
70
70
  "type": "git",
71
71
  "url": "git+https://github.com/syncfusion/ej2-react-ui-components.git"
72
72
  },
73
- "version": "20.1.55",
73
+ "version": "20.2.38",
74
74
  "sideEffects": false
75
75
  }
@@ -1,6 +1,8 @@
1
1
  import { ComplexBase } from '@syncfusion/ej2-react-base';
2
2
  import { ColorMappingModel } from '@syncfusion/ej2-treemap';
3
- export declare class ColorMappingDirective extends ComplexBase<ColorMappingModel, ColorMappingModel> {
3
+ export declare class ColorMappingDirective extends ComplexBase<ColorMappingModel & {
4
+ children?: React.ReactNode;
5
+ }, ColorMappingModel> {
4
6
  static moduleName: string;
5
7
  }
6
8
  export declare class ColorMappingsDirective extends ComplexBase<{}, {}> {
@@ -14,7 +14,9 @@ export interface LevelSettingsDirTypecast {
14
14
  * </TreeMapComponent>
15
15
  * ```
16
16
  */
17
- export declare class LevelDirective extends ComplexBase<LevelSettingsModel | LevelSettingsDirTypecast, LevelSettingsModel | LevelSettingsDirTypecast> {
17
+ export declare class LevelDirective extends ComplexBase<LevelSettingsModel | LevelSettingsDirTypecast & {
18
+ children?: React.ReactNode;
19
+ }, LevelSettingsModel | LevelSettingsDirTypecast> {
18
20
  static moduleName: string;
19
21
  }
20
22
  export declare class LevelsDirective extends ComplexBase<{}, {}> {