All Projects → vaadin → vaadin-split-layout

vaadin / vaadin-split-layout

Licence: Apache-2.0 license
The Web Component which allows you to partition a layout into resizeable areas. Part of the Vaadin components.

Programming Languages

HTML
75241 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to vaadin-split-layout

vaadin-dialog
High quality web component for modal dialogs. Part of the Vaadin platform.
Stars: ✭ 15 (-62.5%)
Mutual labels:  web-component, polymer, webcomponents, vaadin, polymer-element, polymer2
vaadin-icons
Vaadin Icons is a collection of 600+ unique icons designed for web applications
Stars: ✭ 59 (+47.5%)
Mutual labels:  web-component, polymer, webcomponents, vaadin, polymer-element, polymer2
vaadin-context-menu
The responsive Web Component for showing context dependent items for any element on the page. Part of the Vaadin components.
Stars: ✭ 26 (-35%)
Mutual labels:  polymer, webcomponents, vaadin, polymer-element, polymer2
mapbox-gl
Polymer 2.0 custom element for mapbox-gl-js. Uses WebGL to render interactive maps from vector tiles and Mapbox styles - compatible with deck-gl.
Stars: ✭ 24 (-40%)
Mutual labels:  polymer, webcomponents, polymer-element, polymer2
Vaadin Combo Box
The Web Component for displaying a list of items with filtering. Part of the Vaadin components.
Stars: ✭ 113 (+182.5%)
Mutual labels:  web-component, polymer, webcomponents, vaadin
Vaadin Form Layout
The Web Component providing configurable responsive layout for form elements. Part of the Vaadin components.
Stars: ✭ 15 (-62.5%)
Mutual labels:  web-component, polymer, webcomponents, vaadin
vaadin-text-field
The themable Web Component providing input controls. Part of the Vaadin components.
Stars: ✭ 29 (-27.5%)
Mutual labels:  web-component, polymer, webcomponents, vaadin
Vaadin Upload
The Web Component for uploading multiple files with progress indication. Part of the Vaadin components.
Stars: ✭ 87 (+117.5%)
Mutual labels:  web-component, polymer, webcomponents, vaadin
Vaadin Date Picker
The Web Component providing a date selection field with scrollable month calendar. Part of the Vaadin components.
Stars: ✭ 158 (+295%)
Mutual labels:  web-component, polymer, webcomponents, vaadin
paper-chip
A chip web component made with Polymer 2 following Material Design guidelines
Stars: ✭ 30 (-25%)
Mutual labels:  polymer, webcomponents, polymer2
page-title
A Polymer element for easily updating a webpage's title, such as in a SPA.
Stars: ✭ 13 (-67.5%)
Mutual labels:  polymer, polymer-element, polymer2
multiselect-combo-box
A multi select combo box web component based on Polymer and the vaadin-combo-box
Stars: ✭ 41 (+2.5%)
Mutual labels:  polymer, webcomponents, vaadin
Vaadin Core
An evolving set of free, open source web components for building mobile and desktop web applications in modern browsers.
Stars: ✭ 382 (+855%)
Mutual labels:  polymer, webcomponents, vaadin
Vaadin
An evolving set of open source web components for building mobile and desktop web applications in modern browsers.
Stars: ✭ 424 (+960%)
Mutual labels:  polymer, webcomponents, vaadin
Vaadin Grid
vaadin-grid is a free, high quality data grid / data table Web Component. Part of the Vaadin components.
Stars: ✭ 383 (+857.5%)
Mutual labels:  web-component, webcomponents, vaadin
iron-swipeable-pages
[Polymer 1.x] Element that enables switching between different pages by swiping gesture.
Stars: ✭ 51 (+27.5%)
Mutual labels:  polymer, webcomponents, polymer-element
vaadin-checkbox
The Web Component for customized checkboxes. Part of the Vaadin components.
Stars: ✭ 18 (-55%)
Mutual labels:  polymer, webcomponents, vaadin
vaadin-select
Customizable Web Component similar to a native browser select. Part of the Vaadin components.
Stars: ✭ 18 (-55%)
Mutual labels:  webcomponents, vaadin, polymer2
resizable-panels
Web Component that allows to resize its childrens vertically or horizontally
Stars: ✭ 18 (-55%)
Mutual labels:  web-component, polymer, polymer2
identicon-avatar
👾 GitHub style identicon avatar
Stars: ✭ 15 (-62.5%)
Mutual labels:  polymer, webcomponents, polymer2

<vaadin-split-layout>

⚠️ Starting from Vaadin 20, the source code and issues for this component are migrated to the vaadin/web-components monorepository. This repository contains the source code and releases of <vaadin-split-layout> for the Vaadin versions 10 to 19.

<vaadin-split-layout> is a Web Component implementing a split layout for two content elements with a draggable splitter between them, part of the Vaadin components.

Live Demo | API documentation

npm version Bower version Published on webcomponents.org Build status Coverage Status Published on Vaadin  Directory Stars on vaadin.com/directory

<vaadin-split-layout>
  <vaadin-split-layout orientation="vertical">
    <div>First layout content</div>
    <div>Second layout content</div>
  </vaadin-split-layout>
  <vaadin-split-layout orientation="vertical">
    <div>Third layout content</div>
    <div>Fourth layout content</div>
  </vaadin-split-layout>
</vaadin-split-layout>

Screenshot of vaadin-split-layout

Installation

The Vaadin components are distributed as Bower and npm packages. Please note that the version range is the same, as the API has not changed. You should not mix Bower and npm versions in the same application, though.

Unlike the official Polymer Elements, the converted Polymer 3 compatible Vaadin components are only published on npm, not pushed to GitHub repositories.

Polymer 2 and HTML Imports Compatible Version

Install vaadin-split-layout:

bower i vaadin/vaadin-split-layout --save

Once installed, import it in your application:

<link rel="import" href="bower_components/vaadin-split-layout/vaadin-split-layout.html">

Polymer 3 and ES Modules Compatible Version

Install vaadin-split-layout:

npm i @vaadin/vaadin-split-layout --save

Once installed, import it in your application:

import '@vaadin/vaadin-split-layout/vaadin-split-layout.js';

Getting started

Vaadin components use the Lumo theme by default.

To use the Material theme, import the correspondent file from the theme/material folder.

Entry points

  • The component with the Lumo theme:

    theme/lumo/vaadin-split-layout.html

  • The component with the Material theme:

    theme/material/vaadin-split-layout.html

  • Alias for theme/lumo/vaadin-split-layout.html:

    vaadin-split-layout.html

Running demos and tests in a browser

  1. Fork the vaadin-split-layout repository and clone it locally.

  2. Make sure you have npm and Bower installed.

  3. When in the vaadin-split-layout directory, run npm install and then bower install to install dependencies.

  4. Make sure you have polymer-cli installed globally: npm i -g polymer-cli.

  5. Run npm start, browser will automatically open the component API documentation.

  6. You can also open demo or in-browser tests by adding demo or test to the URL, for example:

Running tests from the command line

  1. When in the vaadin-split-layout directory, run polymer test

Following the coding style

We are using ESLint for linting JavaScript code. You can check if your code is following our standards by running npm run lint, which will automatically lint all .js files as well as JavaScript snippets inside .html files.

Big Thanks

Cross-browser Testing Platform and Open Source <3 Provided by Sauce Labs.

Contributing

To contribute to the component, please read the guideline first.

License

Apache License 2.0

Vaadin collects development time usage statistics to improve this product. For details and to opt-out, see https://github.com/vaadin/vaadin-usage-statistics.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].