11# wicket-iziToast
2- [ Apache Wicket] ( https://wicket.apache.org/ ) utilities for using [ iziToast] ( http://izitoast.marcelodolza.com/ ) .
2+ [ Apache Wicket] ( https://wicket.apache.org/ ) utilities for using [ iziToast] ( http://izitoast.marcelodolza.com/ ) .
33
44
55[ ![ Build Status] ( https://travis-ci.org/try0/wicket-iziToast.svg?branch=master )] ( https://travis-ci.org/try0/wicket-iziToast )
66[ ![ codecov] ( https://codecov.io/gh/try0/wicket-iziToast/branch/master/graph/badge.svg )] ( https://codecov.io/gh/try0/wicket-iziToast )
7- [ ![ Quality Gate Status] ( https://sonarcloud.io/api/project_badges/measure?project=jp.try0.wicket%3Awicket-iziToast-parent&metric=alert_status )] ( https://sonarcloud.io/dashboard?id=jp.try0.wicket%3Awicket-iziToast -parent )
7+ [ ![ Quality Gate Status] ( https://sonarcloud.io/api/project_badges/measure?project=jp.try0.wicket%3Awicket-iziToast-parent&metric=alert_status )] ( https://sonarcloud.io/dashboard?id=jp.try0.wicket%3Awicket-izitoast -parent )
88
99
1010# Version
11- 0.3.0
11+ 0.3.1
1212wicket:8.x iziToast:1.4.0
1313
1414
@@ -24,7 +24,7 @@ Deployed [wicket-izitoast-samples](https://try0.jp/app/wicket-izitoast-samples/)
2424<dependency>
2525 <groupId>jp.try0.wicket</groupId>
2626 <artifactId>wicket-izitoast-core</artifactId>
27- <version>0.3.0 </version>
27+ <version>0.3.1 </version>
2828</dependency>
2929```
3030
@@ -43,30 +43,30 @@ IziToastSetting
4343
4444### Display toast using Behavior
4545
46- add IziToastBehavior to any of components in page.
46+ add IziToastBehavior to any of components in page.
4747(If you set setAutoAppendBehavior to true when initializing settings, no need this code.)
4848``` java
4949add(new IziToastBehavior ());
5050```
5151
5252IziToastBehavior converts feedback messages to JavaScript for displaying toast.
5353
54- org.apache.wicket.Component#success(Serializable) org.apache.wicket.Session#success(Serializable)
55- ⇒ success toast
54+ org.apache.wicket.Component#success(Serializable) org.apache.wicket.Session#success(Serializable)
55+ ⇒ success toast
5656
57- org.apache.wicket.Component#info(Serializable)
58- org.apache.wicket.Session#info(Serializable)
59- ⇒ info toast
57+ org.apache.wicket.Component#info(Serializable)
58+ org.apache.wicket.Session#info(Serializable)
59+ ⇒ info toast
6060
61- org.apache.wicket.Component#warn(Serializable)
62- org.apache.wicket.Session#warn(Serializable)
63- ⇒ warn toast
61+ org.apache.wicket.Component#warn(Serializable)
62+ org.apache.wicket.Session#warn(Serializable)
63+ ⇒ warn toast
6464
65- org.apache.wicket.Component#error(Serializable)
66- org.apache.wicket.Session#error(SerializableSerializable)
67- org.apache.wicket.Component#fatal(Serializable)
68- org.apache.wicket.Session#fatal(Serializable)
69- ⇒ error toast
65+ org.apache.wicket.Component#error(Serializable)
66+ org.apache.wicket.Session#error(SerializableSerializable)
67+ org.apache.wicket.Component#fatal(Serializable)
68+ org.apache.wicket.Session#fatal(Serializable)
69+ ⇒ error toast
7070
7171
7272### Display toast manually
0 commit comments