Directory

← Back

l2t-fab-footer

Polymer Element to display FAB in a footer toolbar

Author

Rating

Popularity

<100

Published on NPM Published on webcomponents.org

NPM Stats]

l2t-fab-footer is a footer toolbar with a cut out for a FAB in the centre.

<l2t-fab-footer icon="create"></l2t-fab-footer>
<l2t-fab-footer disabled icon="add"></l2t-fab-footer>
<l2t-fab-footer mini icon="build"></l2t-fab-footer>

See: Documentation, Demo.

Usage

Installation

npm install --save link2twenty/l2t-fab-footer

In an html file

<html>
  <head>
    <script type="module">
      import './l2t-fab-footer/l2t-fab-footer.js';
    </script>
  </head>
  <body>
    <l2t-fab-footer icon="favorite"></l2t-fab-footer>
  </body>
</html>

In a Polymer 3 element

import {PolymerElement, html} from '@polymer/polymer';
import './l2t-fab-footer/l2t-fab-footer.js';
import '@polymer/iron-icons/iron-icons.html';

class SampleElement extends PolymerElement {
  static get template() {
    return html`
    <l2t-fab-footer icon="favorite"></l2t-fab-footer>
    `;
  }
}
customElements.define('sample-element', SampleElement);

Styling

The following custom properties are available for styling:

Custom property Description Default
--fab-footer-height The height of the footer element 42px
--fab-footer-background The color of the footer element's background --primary-color
--fab-footer-color The color of the footer element's text/icons --dark-theme-text-color

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/link2twenty/l2t-fab-footer
cd l2t-fab-footer
npm install
npm install -g polymer-cli

Running the demo locally

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

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-icons#^3.0.1
  • @polymer/lit-element#^0.6.3
  • @polymer/paper-fab#^3.0.1
Released
2018-11-23
Maturity
IMPORTED
License
MIT License

Compatibility

Framework
Browser
Browser Independent

l2t-fab-footer - Vaadin Add-on Directory

Polymer Element to display FAB in a footer toolbar l2t-fab-footer - Vaadin Add-on Directory
[![Published on NPM](https://img.shields.io/npm/v/l2t-fab-footer.svg)](https://www.npmjs.com/package/l2t-fab-footer) [![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://www.webcomponents.org/element/l2t-fab-footer) ![NPM Stats](https://nodei.co/npm/l2t-fab-footer.png)] ## <l2t-fab-footer> `l2t-fab-footer` is a footer toolbar with a cut out for a FAB in the centre. ```html ``` See: [Documentation](https://www.webcomponents.org/element/l2t-fab-footer), [Demo](https://www.webcomponents.org/element/l2t-fab-footer/demo/demo/index.html). ## Usage ### Installation ``` npm install --save link2twenty/l2t-fab-footer ``` ### In an html file ```html ``` ### In a Polymer 3 element ```js import {PolymerElement, html} from '@polymer/polymer'; import './l2t-fab-footer/l2t-fab-footer.js'; import '@polymer/iron-icons/iron-icons.html'; class SampleElement extends PolymerElement { static get template() { return html` `; } } customElements.define('sample-element', SampleElement); ``` ## Styling The following custom properties are available for styling: | Custom property | Description | Default | |----------------|-------------|-------------| | --fab-footer-height | The height of the footer element | 42px | | --fab-footer-background | The color of the footer element's background | --primary-color | | --fab-footer-color | The color of the footer element's text/icons | --dark-theme-text-color | ## Contributing If you want to send a PR to this element, here are the instructions for running the tests and demo locally: ### Installation ```sh git clone https://github.com/link2twenty/l2t-fab-footer cd l2t-fab-footer npm install npm install -g polymer-cli ``` ### Running the demo locally ```sh polymer serve --npm open http://localhost:/demo/ ```
View on NPM
View on GitHub

l2t-fab-footer version 1.0.0
### Dependencies * @polymer/iron-icons#^3.0.1 * @polymer/lit-element#^0.6.3 * @polymer/paper-fab#^3.0.1

l2t-fab-footer version 1.0.1
### Dependencies * @polymer/iron-icons#^3.0.1 * @polymer/lit-element#^0.6.3 * @polymer/paper-fab#^3.0.1

l2t-fab-footer version 1.0.2
### Dependencies * @polymer/iron-icons#^3.0.1 * @polymer/lit-element#^0.6.3 * @polymer/paper-fab#^3.0.1

l2t-fab-footer version 1.0.3
### Dependencies * @polymer/iron-icons#^3.0.1 * @polymer/lit-element#^0.6.3 * @polymer/paper-fab#^3.0.1

Online