This repository was archived by the owner on Dec 31, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +6
-9
lines changed
src/main/java/org/vaadin/alump/gridstack/demo Expand file tree Collapse file tree 4 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -60,9 +60,10 @@ Official releases of this add-on are available at Vaadin Directory. For Maven in
60
60
61
61
## Release notes
62
62
63
- ### Version 0.4.1 (TBD )
63
+ ### Version 0.4.1 (2017-06-21 )
64
64
- Add method to set style name for item wrapper
65
65
- Alternative paper styling from Masonry add-on
66
+ - gridstack-initializing and gridstack-ready stylenames added to allow advanced theming
66
67
67
68
### Version 0.4.0 (2017-03-14)
68
69
- Ready event has now easy way to verify it's called first time for that GridStackLayout
Original file line number Diff line number Diff line change 5
5
<groupId >org.vaadin.alump.gridstack</groupId >
6
6
<artifactId >gridstack-addon</artifactId >
7
7
<packaging >bundle</packaging >
8
- <version >0.4.1-SNAPSHOT </version >
8
+ <version >0.4.1</version >
9
9
<name >GridStack Add-on</name >
10
10
11
11
<properties >
Original file line number Diff line number Diff line change 5
5
<groupId >org.vaadin.alump.gridstack</groupId >
6
6
<artifactId >gridstack-demo</artifactId >
7
7
<packaging >war</packaging >
8
- <version >0.4.1-SNAPSHOT </version >
8
+ <version >0.4.1</version >
9
9
<name >GridStack Add-on Demo</name >
10
10
11
11
<properties >
Original file line number Diff line number Diff line change 1
1
package org .vaadin .alump .gridstack .demo ;
2
2
3
- import com .vaadin .annotations .Push ;
3
+ import com .vaadin .annotations .* ;
4
4
import com .vaadin .navigator .Navigator ;
5
5
import com .vaadin .server .*;
6
6
import com .vaadin .ui .*;
7
7
8
8
import javax .servlet .annotation .WebServlet ;
9
9
10
- import com .vaadin .annotations .Theme ;
11
- import com .vaadin .annotations .Title ;
12
- import com .vaadin .annotations .VaadinServletConfiguration ;
13
-
14
10
@ Theme ("demo" )
15
11
@ Title ("GridStack Add-on Demo" )
16
12
@ SuppressWarnings ("serial" )
@@ -33,7 +29,7 @@ protected void init(VaadinRequest request) {
33
29
navigator .addView (MenuView .VIEW_NAME , MenuView .class );
34
30
navigator .addView (TestView .VIEW_NAME , TestView .class );
35
31
navigator .addView (SplitView .VIEW_NAME , SplitView .class );
36
- navigator .addView (SimpleView .VIEW_NAME , new SimpleView () );
32
+ navigator .addView (SimpleView .VIEW_NAME , SimpleView . class );
37
33
}
38
34
39
35
}
You can’t perform that action at this time.
0 commit comments