]> source.dussan.org Git - vaadin-core.git/commitdiff
Support using as development server for all elements 44/head pr44/r1
authorAnton Platonov <anton@vaadin.com>
Fri, 22 Apr 2016 10:43:17 +0000 (13:43 +0300)
committerAnton Platonov <anton@vaadin.com>
Fri, 22 Apr 2016 10:43:17 +0000 (13:43 +0300)
bower.json
index.html [new file with mode: 0644]

index 57fdda4c9320e23a3252f9a2922a95798295a76f..78270392e216965b52fbf6bb19ac0dec0c7670b4 100644 (file)
@@ -31,6 +31,9 @@
     "vaadin-upload": "vaadin/vaadin-upload#1.0.0-beta1"
   },
   "devDependencies": {
+    "web-component-tester": "^4.0.3",
+    "test-fixture": "polymerelements/test-fixture#^1.0.0",
+    "iron-test-helpers": "polymerelements/iron-test-helpers#^1.0.0",
     "iron-component-page": "polymerelements/iron-component-page#~1.1.0",
     "elements-demo-resources": "vaadin/elements-demo-resources#master",
     "components-demo-resources": "vaadin/components-demo-resources#master",
diff --git a/index.html b/index.html
new file mode 100644 (file)
index 0000000..3ef7c76
--- /dev/null
@@ -0,0 +1,86 @@
+<!--
+@license
+Copyright (c) 2016 Vaadin Ltd.
+This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
+-->
+<html>
+<head>
+  <meta charset="utf-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
+  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+
+  <title>Vaadin Core Elements</title>
+
+  <style>
+    body {
+      font: normal normal normal 12pt/1.5 sans-serif;
+      max-width: 48rem;
+      margin: 0 auto;
+      padding: 2rem;
+      }
+
+    nav {
+      text-align: left;
+      }
+
+      nav ul {
+        margin: 0 -1rem;
+        padding: 0;
+        list-style: none;
+        }
+
+      nav li {
+        display: inline-block;
+        vertical-align: top;
+        width: 8rem;
+        padding: 1rem;
+        text-align: center;
+        }
+
+    nav a {
+      display: block;
+      padding: 1rem;
+      background: deepskyblue;
+      color: white;
+      text-decoration: none;
+      -webkit-font-smoothing: antialiased;
+      transition: opacity .5s;
+      }
+
+    nav a:hover {
+      opacity: 0.75;
+      transition: opacity .1s;
+      }
+
+    nav a:first-child {
+      background: gray;
+      padding-top: .75rem;
+      padding-bottom: .75rem;
+      }
+
+
+  </style>
+</head>
+<body>
+  <h1>Vaadin Core Elements</h1>
+  <nav>
+    <ul class="layout horizontal wrap">
+      <li>
+        <a href="../vaadin-grid/">Vaadin<br> Grid</a>
+        <a href="../vaadin-grid/demo/">Demo</a>
+      <li>
+        <a href="../vaadin-combo-box/">Vaadin<br> ComboBox</a>
+        <a href="../vaadin-combo-box/demo/">Demo</a>
+      <li>
+        <a href="../vaadin-date-picker/">Vaadin<br> DatePicker</a>
+        <a href="../vaadin-date-picker/demo/">Demo</a>
+      <li>
+        <a href="../vaadin-upload/">Vaadin<br> Upload</a>
+        <a href="../vaadin-upload/demo/">Demo</a>
+      <li>
+        <a href="../vaadin-icons/">Vaadin<br> Icons</a>
+        <a href="../vaadin-icons/demo/">Demo</a>
+    </ul>
+  </nav>
+</body>
+</html>