Add-on Directory

← Back

iron-icons

A set of icons for use with iron-icon

Author

Contributors

Rating

Popularity

<100

Published on NPM Build status Published on webcomponents.org

<iron-icons>

iron-icons is a utility import that includes the definition for the iron-icon element, iron-iconset-svg element, as well as an import for the default icon set.

See: Documentation, Demo.

Usage

Installation

npm install --save @polymer/iron-icons

In an HTML file

<html>
  <head>
    <script type="module">
      import '@polymer/iron-icon/iron-icon.js';
      import '@polymer/iron-icons/iron-icons.js';
    </script>
  </head>
  <body>
    <iron-icon icon="search"></iron-icon>
  </body>
</html>

In a Polymer 3 element

import {PolymerElement} from '@polymer/polymer/polymer-element.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';

import '@polymer/iron-icon/iron-icon.js';
import '@polymer/iron-icons/iron-icons.js';

class ExampleElement extends PolymerElement {
  static get template() {
    return html`
      <iron-icon icon="search"></iron-icon>
    `;
  }
}

customElements.define('example-element', ExampleElement);

Contributing

If you want to send a PR to this element, here are the instructions for running the tests and demo locally:

Installation

git clone https://github.com/PolymerElements/iron-icons
cd iron-icons
npm install
npm install -g polymer-cli

Running the demo locally

polymer serve --npm
open http://127.0.0.1:<port>/demo/

Running the tests

polymer test --npm

Compatibility

(Loading compatibility data...)

Was this helpful? Need more help?
Leave a comment or a question below. You can also join the chat on Discord or ask questions on StackOverflow.

Version

Dependencies

  • @polymer/iron-icon#^3.0.0-pre.26
  • @polymer/iron-iconset-svg#^3.0.0-pre.26
  • @polymer/polymer#^3.0.0
Released
2018-09-14
Maturity
IMPORTED
License
BSD 3-clause "New" or "Revised" License

Compatibility

Framework
Polymer 1.0+
Polymer 3.0+
Polymer 2.0+ in 2.1.1
Browser
Browser Independent

Grid Helpers Add-on - Vaadin Add-on Directory

Several grid recipes for Vaadin 23+ (and 22), ready to use Grid Helpers Add-on - Vaadin Add-on Directory
Several grid recipes for Vaadin 23+ (and 22), ready to use. DOES NOT require extending Grid. #### Features * Remove multiselect selection column * Freeze a grid's selection (checkbox) column * Create Grid with conditional selection (with the following limitations: [#11](https://github.com/FlowingCode/GridHelpers/issues/11), [#12](https://github.com/FlowingCode/GridHelpers/issues/12)) * Select Grid rows automatically using up/down arrow keys * Show a Vaadin Grid with compact row styling * Show a meaningful message instead of an empty Grid * Show a menu to toggle the visibility of grid columns #### Maven Central Starting with version 1.4.0 grid-helpers is released through Maven Central. #### Found a bug or have a suggestion? Report it on GitHub For bug reports, feature suggestions, or questions, please open an issue on [GitHub](https://github.com/FlowingCode/GridHelpers/issues). This makes it easier for us to track and respond efficiently, ensuring you get the best possible support. Your input helps us improve—thank you!
Author Homepage
Online Demo
Issue tracker
View on GitHub

Grid Helpers Add-on version 0.1.0
Initial release. Compatible with Vaadin 22-23.

Grid Helpers Add-on version 0.2.0
#### New features: - Add support for toolbar footer ([#15](https://github.com/FlowingCode/GridHelpers/issues/15)) - Add support for obtaining headers and footers - Implement setHidable and default toggle caption

Grid Helpers Add-on version 0.2.1
#### Bug fixes: * Fix column toggle items style (Items to toggle column visibility do not respond on full width) ([#24](https://github.com/FlowingCode/GridHelpers/issues/24)) * Prevent ColumnToggle from closing after selection ([#25](https://github.com/FlowingCode/GridHelpers/issues/25))

Grid Helpers Add-on version 0.3.0
#### New features: * Add listener for column visible toggle ([#27](https://github.com/FlowingCode/GridHelpers/issues/27))

Grid Helpers Add-on version 0.3.1
### Bugfixes: * Fix NPE when trying to obtain a missing footer (fixes [#31](https://github.com/FlowingCode/GridHelpers/issues/31))

Grid Helpers Add-on version 0.3.2
#### Bug fixes: * fix: remove JSR 380 annotations ([#44](https://github.com/FlowingCode/GridHelpers/issues/44)) * fix: support vaadin getHeader/getFooter ([#33](https://github.com/FlowingCode/GridHelpers/issues/33)) * fix: support Vaadin 24 DOM structure by ([#47](https://github.com/FlowingCode/GridHelpers/issues/47))

Grid Helpers Add-on version 0.3.3
#### Bug fixes: * fix: allow setting grid footer toolbar over an existing one ([#50](https://github.com/FlowingCode/GridHelpers/issues/50))

Grid Helpers Add-on version 0.3.4
#### Bug fixes: * keep original selection when clicking a non-selectable row ([#40](https://github.com/FlowingCode/GridHelpers/issues/40)) * fix binary incompatibility with Vaadin 24 ([#54](https://github.com/FlowingCode/GridHelpers/issues/54))

Grid Helpers Add-on version 0.3.5
#### New features: * Add enhanced support for grid rows selection ([#13](https://github.com/FlowingCode/GridHelpers/issues/13))

Grid Helpers Add-on version 1.0.0
#### New features: * Add enhanced support for grid rows selection ([#13](https://github.com/FlowingCode/GridHelpers/issues/13)) * New major version compatible with Vaadin 23.3 and 24

Grid Helpers Add-on version 1.1.0
#### New features: * add feature for hiding header and footers ([#14](https://github.com/FlowingCode/GridHelpers/issues/14)) * add support for styling headers and footers * add support for heightByRows * add support for responsive steps #### Bug fixes: * support Enhanced, Selection by clicking row and Arrow selection simultaneously ([#64](https://github.com/FlowingCode/GridHelpers/issues/64)) * initialize connector if the grid is already attached ([#76](https://github.com/FlowingCode/GridHelpers/issues/76))

Grid Helpers Add-on version 1.1.1
#### New features: * add feature for hiding header and footers ([#14](https://github.com/FlowingCode/GridHelpers/issues/14)) * add support for styling headers and footers * add support for heightByRows * add support for responsive steps

Grid Helpers Add-on version 1.2.0
#### New features: * Add select all support for grids using a lazy data provider ([#70](https://github.com/FlowingCode/GridHelpers/issues/70)) #### Bug fixes: * Style toggle menu for Vaadin 24 ([#75](https://github.com/FlowingCode/GridHelpers/issues/75)) * Allow to add a footer to a one-column grid ([#90](https://github.com/FlowingCode/GridHelpers/issues/90))

Grid Helpers Add-on version 1.3.0
#### New features: * Add checkbox column helper ([#69](https://github.com/FlowingCode/GridHelpers/issues/69))

Grid Helpers Add-on version 1.3.1
#### Bug fixes: * fix empty grid label not shown ([#102](https://github.com/FlowingCode/GridHelpers/issues/102)) * fix style of first line in dense grid ([#101](https://github.com/FlowingCode/GridHelpers/issues/101)) * set vaadin dependency as optional

Grid Helpers Add-on version 1.3.2
#### Bug fixes: * add support to clear empty grid label ([#103](https://github.com/FlowingCode/GridHelpers/issues/103)) * fix steps array values should be ascending sorted ([#93](https://github.com/FlowingCode/GridHelpers/issues/93))

Grid Helpers Add-on version 1.4.0
Starting with version 1.4.0 grid-helpers is released through Maven Central.

Grid Helpers Add-on version 1.4.1
#### Bug fixes: * fix: compute heightByRows while loading ([#123](https://github.com/FlowingCode/GridHelpers/pull/123))

Grid Helpers Add-on version 1.4.2
#### Bug fixes: * Avoid IndexOutOfBoundsException in enhanced selection ([#125](https://github.com/FlowingCode/GridHelpers/issues/125))

Online