From e7e5a16f380b5f7e3eeb37a810a43226a2f29740 Mon Sep 17 00:00:00 2001 From: Manolo Carrasco Date: Mon, 14 Dec 2015 14:26:29 +0100 Subject: [PATCH] Rename: elements -> core-elements --- CHANGES.md | 35 --------------- README.md | 44 +++++++++---------- apidoc/index.html | 4 +- bower.json | 12 +++-- demo/index.html | 3 +- package.json | 8 ++-- tasks/cdn.js | 10 ++--- tasks/config.js | 2 +- tasks/docsite.js | 6 +-- tasks/zip.js | 8 ++-- ...elements.html => vaadin-core-elements.html | 0 11 files changed, 51 insertions(+), 81 deletions(-) delete mode 100644 CHANGES.md rename vaadin-elements.html => vaadin-core-elements.html (100%) diff --git a/CHANGES.md b/CHANGES.md deleted file mode 100644 index 07b4f1a..0000000 --- a/CHANGES.md +++ /dev/null @@ -1,35 +0,0 @@ -## Vaadin Elements 0.3.0-beta12 (2015-11-12) -- `` updated to 0.9.0-beta5. - -## Vaadin Elements 0.3.0-beta11 (2015-10-20) -- Vaadin Components has been renamed to Vaadin Elements. -- `` updated to 0.9.0-beta4. - -## Vaadin Components 0.3.0-beta10 (2015-10-09) -- `` updated to 0.9.0-beta3. - -## Vaadin Components 0.3.0-beta9 (2015-09-18) - -- Host apidoc and demo launch pages in vaadin-components instead of -maintaining independent project for those -(deprecated components-examples & components-apidoc) -- Examples and apidoc are bundled with vaadin-components so as it is -possible to run them either local or wen deployed in CDN. - -## Vaadin Components 0.3.0-beta8 (2015-09-11) - -- vaadin-components becomes a repository with references to vaadin components. -- `` is split in a new project. - -## Vaadin Components 0.3.0-beta7 (2015-09-02) - -- Polymer updated to v1.1.1 -- Renamed component `` to `` -- Many improvements in [v-grid](https://github.com/vaadin/vaadin-grid/blob/master/CHANGES.md#vaadin-grid-v030beta7-2015-sept) - -## Vaadin Grid v0.2.1 (2015-05-15) -- New *material design* theme. - -## Vaadin Components 0.2.0 (2015-05-08) -- Polymer updated to v0.8.0-rc.7 -- Added `` component. diff --git a/README.md b/README.md index 1c70409..23c5384 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,17 @@ -# Vaadin Elements +# Vaadin Core Elements -[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/vaadin/vaadin-elements?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) +[![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) -Vaadin Elements is an evolving set of custom HTML elements, built using [Polymer](https://www.polymer-project.org), for building mobile and desktop web applications in modern browsers. +Vaadin Core Elements is an evolving set of custom HTML elements, built using [Polymer](https://www.polymer-project.org), for building mobile and desktop web applications in modern browsers. ### Component examples and documentation View live examples and source code side-by-side for individual custom elements. -| Component | Description | -| --- | --- | -| [<**vaadin-grid**>](https://github.com/vaadin/vaadin-grid) · [Examples](https://cdn.vaadin.com/vaadin-elements/latest/vaadin-grid/demo/) · [API](https://cdn.vaadin.com/vaadin-elements/latest/vaadin-elements/apidoc/#vaadin-grid) | Data grid for showing large amounts of tabular data. | - +======= +| Element | Description | Status +| --- | --- | --- | +| [<**vaadin-grid**>](https://github.com/vaadin/vaadin-grid) · [Examples](https://cdn.vaadin.com/vaadin-core-elements/latest/vaadin-grid/demo/) · [API](https://cdn.vaadin.com/vaadin-core-elements/latest/vaadin-grid/) | Data grid for showing large amounts of tabular data. | Beta | ### Quickstart @@ -23,7 +23,7 @@ View live examples and source code side-by-side for individual custom elements. ### Installation -We offer three ways to use Vaadin Elements in your project: Bower, CDN and ZIP archive. The only difference between the options is the URL you use to import the necessary files into your HTML page. +We offer three ways to use Vaadin Core Elements in your project: Bower, CDN and ZIP archive. The only difference between the options is the URL you use to import the necessary files into your HTML page. #### 1. Create a new folder for your project @@ -32,17 +32,17 @@ We offer three ways to use Vaadin Elements in your project: Bower, CDN and ZIP a $ cd my-project ``` -#### 2. Install Vaadin Elements +#### 2. Install Vaadin Core Elements - ##### Bower We recommend using [Bower](http://bower.io) for managing your front-end dependencies. Follow the [Bower installation instructions](http://bower.io/#install-bower), then run the following command inside your project folder to install the most recent stable release. ```shell - $ bower install --save vaadin-elements + $ bower install --save vaadin-core-elements ``` - This will download Vaadin Elements and its dependencies to the `bower_components` folder inside your project's folder. + This will download Vaadin Core Elements bundle and its dependencies to the `bower_components` folder inside your project's folder. If you wish to use the development snapshot version of some component, you can install/update that separately: @@ -52,17 +52,17 @@ We offer three ways to use Vaadin Elements in your project: Bower, CDN and ZIP a - ##### CDN - You can use Vaadin Elements from CDN (see example below). This is especially convenient for services like JSFiddle, Codepen.io, etc. + You can use Vaadin Core Elements from CDN (see example below). This is especially convenient for services like JSFiddle, Codepen.io, etc. For example, to import vaadin-grid, use the following URL: - `https://cdn.vaadin.com/vaadin-elements/latest/vaadin-grid/vaadin-grid.html` + `https://cdn.vaadin.com/vaadin-core-elements/latest/vaadin-grid/vaadin-grid.html` - To import all Vaadin Elements, use the following URL: + To import all Vaadin Core Elements, use the following URL: - `https://cdn.vaadin.com/vaadin-elements/latest/vaadin-elements/vaadin-elements.html` + `https://cdn.vaadin.com/vaadin-core-elements/latest/vaadin-core-elements/vaadin-core-elements.html` - > You can also use the nightly snapshot versions of any component, e.g. https://cdn.vaadin.com/vaadin-elements/master/vaadin-grid/vaadin-grid.html + > You can also use the nightly snapshot versions of any component, e.g. https://cdn.vaadin.com/vaadin-core-elements/master/vaadin-grid/vaadin-grid.html - ##### Download ZIP @@ -72,7 +72,7 @@ We offer three ways to use Vaadin Elements in your project: Bower, CDN and ZIP a #### 3. Create a HTML file - Create a new HTML file inside your project folder and copy the following code into it (choose one of the options how to import Vaadin Elements in the `` section): + Create a new HTML file inside your project folder and copy the following code into it (choose one of the options how to import Vaadin Core Elements in the `` section): > **Serving the files during development**, when using Bower or the ZIP archive: @@ -82,19 +82,19 @@ We offer three ways to use Vaadin Elements in your project: Bower, CDN and ZIP a - + - - + + + --> + --> diff --git a/apidoc/index.html b/apidoc/index.html index 1ff94a5..00a6234 100644 --- a/apidoc/index.html +++ b/apidoc/index.html @@ -3,7 +3,7 @@ - vaadin-elements + vaadin-core-elements