Skip to content

Commit 006c1a4

Browse files
authored
Merge pull request #31 from GwtMaterialDesign/release_2.8.0
Release 2.8.5
2 parents 2ceb4c0 + b968bb1 commit 006c1a4

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ AmCharts V4 Official Documentation can be found [here](https://www.amcharts.com/
1313

1414

1515
## Maven
16-
### Current Version 2.8.3
16+
### Current Version 2.8.5
1717
```xml
1818
<dependency>
1919
<groupId>com.github.gwtmaterialdesign</groupId>
2020
<artifactId>gwt-material-am4charts</artifactId>
21-
<version>2.8.3</version>
21+
<version>2.8.5</version>
2222
</dependency>
2323
```
2424

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>com.github.gwtmaterialdesign</groupId>
99
<artifactId>gwt-material-am4charts</artifactId>
10-
<version>2.8.3</version>
10+
<version>2.8.5</version>
1111
<packaging>gwt-lib</packaging>
1212

1313
<name>Gwt Material AmCharts V4</name>
@@ -38,7 +38,7 @@
3838
<connection>scm:git:[email protected]:GwtMaterialDesign/gwt-material.git</connection>
3939
<developerConnection>scm:git:[email protected]:GwtMaterialDesign/gwt-material.git</developerConnection>
4040
<url>http://github.com/GwtMaterialDesign/gwt-material</url>
41-
<tag>v2.8.3</tag>
41+
<tag>v2.8.5</tag>
4242
</scm>
4343

4444
<licenses>

src/main/java/gwt/material/design/amcore/client/Am4Core.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@ public class Am4Core {
6969
@JsMethod(namespace = "am4core")
7070
public static native Object create(String div, Object object);
7171

72+
@JsMethod(namespace = "am4core")
73+
public static native Object createFromConfig(Object config, String div, String type);
74+
7275
@JsMethod(namespace = "am4core")
7376
public static native Object create(Element div, Object chartObject);
7477

src/main/java/gwt/material/design/amcore/client/base/Component.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
public class Component extends Container {
3333

3434
@JsProperty
35-
public JavaScriptObject data;
35+
public Object data;
3636

3737
@JsProperty
3838
public IComponentDataFields dataFields;

src/main/java/gwt/material/design/amcore/client/base/Container.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ public class Container extends Sprite {
3939
@JsProperty
4040
public List<Sprite> children;
4141

42+
@JsProperty
43+
public Object data;
44+
4245
/**
4346
* @see Align
4447
*/

src/main/resources/gwt/material/design/amcore/client/resources/js/core.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)