diff options
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | bower.json | 7 | ||||
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | vaadin-core-elements.html | 2 |
4 files changed, 10 insertions, 5 deletions
@@ -1,4 +1,4 @@ -![Bower version](https://badge.fury.io/bo/vaadin-core-elements.svg) +![Bower version](https://badge.fury.io/bo/vaadin-core-elements.svg) [![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://www.webcomponents.org/collection/vaadin/vaadin-core-elements) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/vaadin/vaadin-core-elements?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) @@ -15,6 +15,8 @@ | [vaadin-icons](https://github.com/vaadin/vaadin-icons) | ![Bower version](https://badge.fury.io/bo/vaadin-icons.svg) | [![npm version](https://badge.fury.io/js/vaadin-icons.svg)](https://www.npmjs.com/package/vaadin-icons) | | | [vaadin-split-layout](https://github.com/vaadin/vaadin-split-layout) | ![Bower version](https://badge.fury.io/bo/vaadin-split-layout.svg) | [![npm version](https://badge.fury.io/js/vaaadin-split-layout.svg)](https://www.npmjs.com/package/vaadin-split-layout) | [![Build status](https://travis-ci.org/vaadin/vaadin-split-layout.svg?branch=master)](https://travis-ci.org/vaadin/vaadin-split-layout) | | [vaadin-upload](https://github.com/vaadin/vaadin-upload) | ![Bower version](https://badge.fury.io/bo/vaadin-upload.svg) | [![npm version](https://badge.fury.io/js/vaadin-upload.svg)](https://www.npmjs.com/package/vaadin-upload) | [![Build Status](https://travis-ci.org/vaadin/vaadin-upload.svg?branch=master)](https://travis-ci.org/vaadin/vaadin-upload) | +| [vaadin-split-layout](https://github.com/vaadin/vaadin-split-layout) | ![Bower version](https://badge.fury.io/bo/vaadin-split-layout.svg) | [![npm version](https://badge.fury.io/js/vaadin-split-layout.svg)](https://www.npmjs.com/package/vaadin-split-layout) | [![Build Status](https://travis-ci.org/vaadin/vaadin-split-layout.svg?branch=master)](https://travis-ci.org/vaadin/vaadin-split-layout) | +| [vaadin-context-menu](https://github.com/vaadin/vaadin-context-menu) | ![Bower version](https://badge.fury.io/bo/vaadin-context-menu.svg) | [![npm version](https://badge.fury.io/js/vaadin-context-menu.svg)](https://www.npmjs.com/package/vaadin-context-menu) | [![Build Status](https://travis-ci.org/vaadin/vaadin-context-menu.svg?branch=master)](https://travis-ci.org/vaadin/vaadin-context-menu) | Vaadin Core Elements is a bundle that contains all the free elements, licensed under the Apache License 2.0. In addition, we have commercially licensed elements, such as [Vaadin Charts](https://github.com/vaadin/vaadin-charts). @@ -1,6 +1,5 @@ { "name": "vaadin-core-elements", - "version": "1.3.0", "authors": [ "Vaadin Ltd" ], @@ -26,10 +25,12 @@ ], "dependencies": { "vaadin-grid": "vaadin/vaadin-grid#1.2.x", - "vaadin-combo-box": "vaadin/vaadin-combo-box#1.1.x", + "vaadin-combo-box": "vaadin/vaadin-combo-box#1.2.x", "vaadin-icons": "vaadin/vaadin-icons#1.0.x", "vaadin-date-picker": "vaadin/vaadin-date-picker#1.2.x", - "vaadin-upload": "vaadin/vaadin-upload#1.1.x" + "vaadin-upload": "vaadin/vaadin-upload#1.1.x", + "vaadin-split-layout": "vaadin/vaadin-split-layout#1.0.x", + "vaadin-context-menu": "vaadin/vaadin-context-menu#1.0.x" }, "devDependencies": { "web-component-tester": "^4.0.3", diff --git a/package.json b/package.json index f3dfa3e..b0bd3aa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vaadin-core-elements", - "version": "1.1.0", + "version": "1.4.0", "description": "Vaadin Core Elements is an evolving set of free, open sourced custom HTML elements, built using Polymer, for building mobile and desktop web applications in modern browsers.", "author": "Vaadin Ltd", "license": "Apache-2.0", diff --git a/vaadin-core-elements.html b/vaadin-core-elements.html index a1c5fc1..ea0e874 100644 --- a/vaadin-core-elements.html +++ b/vaadin-core-elements.html @@ -3,3 +3,5 @@ <link rel="import" href="../vaadin-combo-box/vaadin-combo-box.html"> <link rel="import" href="../vaadin-upload/vaadin-upload.html"> <link rel="import" href="../vaadin-date-picker/vaadin-date-picker.html"> +<link rel="import" href="../vaadin-split-layout/vaadin-split-layout.html"> +<link rel="import" href="../vaadin-context-menu/vaadin-context-menu.html"> |