Skip to content

Commit b95292c

Browse files
authored
Merge pull request #39 from FlowingCode/app-layout-addon-2.0.0
Migrate to Vaadin 14
2 parents 9fd3e9a + 3f5e2f5 commit b95292c

File tree

24 files changed

+749
-252
lines changed

24 files changed

+749
-252
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,11 @@
22
/target
33
/.classpath
44
/.project
5+
/node_modules
6+
/webpack.generated.js
7+
/node
8+
/drivers
9+
/package-lock.json
10+
/webpack.config.js
11+
/package.json
12+
/error-screenshots

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
# App Layout Add-on
66

7-
Vaadin 10 Java integration of https://github.com/PolymerElements/app-layout
7+
Vaadin Flow Java integration of https://github.com/PolymerElements/app-layout
88
This addon is particularly usefull if you want to create a new application with some initial support for responsiveness.
9-
9+
1010
## Features
1111

1212
* Left side menu with hamburguer button, and now with support for sub-menus and icons

drivers.xml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
2+
<root>
3+
<windows>
4+
<driver id="googlechrome">
5+
<version id="78.0.3904.70">
6+
<bitrate thirtytwobit="true" sixtyfourbit="true">
7+
<filelocation>https://chromedriver.storage.googleapis.com/78.0.3904.70/chromedriver_win32.zip</filelocation>
8+
<hash>26705e683632c6e1f9c62179b6143b409f4d7681</hash>
9+
<hashtype>sha1</hashtype>
10+
</bitrate>
11+
</version>
12+
</driver>
13+
</windows>
14+
<linux>
15+
<driver id="googlechrome">
16+
<version id="78.0.3904.70">
17+
<bitrate sixtyfourbit="true">
18+
<filelocation>https://chromedriver.storage.googleapis.com/78.0.3904.70/chromedriver_linux64.zip</filelocation>
19+
<hash>63e13e5f0df96af1cc3a2006c00b2f1871b62caf</hash>
20+
<hashtype>sha1</hashtype>
21+
</bitrate>
22+
</version>
23+
</driver>
24+
</linux>
25+
<osx>
26+
<driver id="googlechrome">
27+
<version id="78.0.3904.70">
28+
<bitrate sixtyfourbit="true">
29+
<filelocation>https://chromedriver.storage.googleapis.com/78.0.3904.70/chromedriver_mac64.zip</filelocation>
30+
<hash>ce06a7d3a9d18b3d054d3b4c3c32d2cd74e81a91</hash>
31+
<hashtype>sha1</hashtype>
32+
</bitrate>
33+
</version>
34+
</driver>
35+
</osx>
36+
</root>

0 commit comments

Comments
 (0)