iron-resizable-behavior

WebJar for iron-resizable-behavior

Лицензия

Лицензия

BSD 3-Clause
Группа

Группа

org.webjars.bowergithub.polymerelements
Идентификатор

Идентификатор

iron-resizable-behavior
Последняя версия

Последняя версия

3.0.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

iron-resizable-behavior
WebJar for iron-resizable-behavior
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/PolymerElements/iron-resizable-behavior

Скачать iron-resizable-behavior

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.bowergithub.polymerelements/iron-resizable-behavior/ -->
<dependency>
    <groupId>org.webjars.bowergithub.polymerelements</groupId>
    <artifactId>iron-resizable-behavior</artifactId>
    <version>3.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bowergithub.polymerelements/iron-resizable-behavior/
implementation 'org.webjars.bowergithub.polymerelements:iron-resizable-behavior:3.0.1'
// https://jarcasting.com/artifacts/org.webjars.bowergithub.polymerelements/iron-resizable-behavior/
implementation ("org.webjars.bowergithub.polymerelements:iron-resizable-behavior:3.0.1")
'org.webjars.bowergithub.polymerelements:iron-resizable-behavior:jar:3.0.1'
<dependency org="org.webjars.bowergithub.polymerelements" name="iron-resizable-behavior" rev="3.0.1">
  <artifact name="iron-resizable-behavior" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bowergithub.polymerelements', module='iron-resizable-behavior', version='3.0.1')
)
libraryDependencies += "org.webjars.bowergithub.polymerelements" % "iron-resizable-behavior" % "3.0.1"
[org.webjars.bowergithub.polymerelements/iron-resizable-behavior "3.0.1"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

Published on NPM Build status Published on webcomponents.org

IronResizableBehavior

IronResizableBehavior is a behavior that can be used in Polymer elements to coordinate the flow of resize events between "resizers" (elements that control the size or hidden state of their children) and "resizables" (elements that need to be notified when they are resized or un-hidden by their parents in order to take action on their new measurements).

Elements that perform measurement should add the IronResizableBehavior behavior to their element definition and listen for the iron-resize event on themselves. This event will be fired when they become showing after having been hidden, when they are resized explicitly by another resizable, or when the window has been resized.

Note, the iron-resize event is non-bubbling.

See: Documentation, Demo.

Usage

Installation

npm install --save @polymer/iron-resizable-behavior

In a Polymer 3 element

import {PolymerElement, html} from '@polymer/polymer';
import {mixinBehaviors} from '@polymer/polymer/lib/legacy/class.js';
import {IronResizableBehavior} from '@polymer/iron-resizable-behavior/iron-resizable-behavior.js';

class SampleElement extends mixinBehaviors([IronResizableBehavior], PolymerElement) {
  static get template() {
    return html`
      <style>
        :host {
          display: block;
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
        }
      </style>
      <span>width: [[width]] </span>
      <span>height: [[height]]</span>
    `;
  }

  static get properties() {
    return {
      width: Number,
      height: Number,
    }
  }

  connectedCallback() {
    super.connectedCallback();
    this.addEventListener('iron-resize', this.onIronResize.bind(this));
  }

  onIronResize() {
    this.width = this.offsetWidth;
    this.height = this.offsetHeight;
  }
}
customElements.define('sample-element', SampleElement);

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-resizable-behavior
cd iron-resizable-behavior
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
org.webjars.bowergithub.polymerelements

Версии библиотеки

Версия
3.0.1
2.1.1
2.1.0
2.0.1
1.0.6