1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update components

This commit is contained in:
Luke Pulverenti 2016-06-28 22:44:25 -04:00
parent 2846174b86
commit 003271cec1
9 changed files with 35 additions and 27 deletions

View file

@ -15,12 +15,12 @@
},
"devDependencies": {},
"ignore": [],
"version": "1.4.59",
"_release": "1.4.59",
"version": "1.4.60",
"_release": "1.4.60",
"_resolution": {
"type": "version",
"tag": "1.4.59",
"commit": "7e348b4fcb9c8728789b0b54f465eaa4a32a5e69"
"tag": "1.4.60",
"commit": "28747871beb1d800a18c86c5e30255ae6015489d"
},
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
"_target": "^1.2.0",

View file

@ -36,9 +36,6 @@ button.actionSheetMenuItem {
font-weight: inherit;
align-items: center;
flex-shrink: 0;
/* Some really bad margin hacks to fix content sizing when scrollbar is visible */
margin-left: 20px;
margin-right: -20px;
}
.actionSheetItemText {
@ -68,9 +65,6 @@ button.actionSheetMenuItem {
display: flex;
flex-direction: column;
width: 100%;
/* Some really bad margin hacks to fix content sizing when scrollbar is visible */
padding-right: 20px;
margin-right: 20px;
}
.layout-tv .actionSheetScroller {

View file

@ -28,14 +28,14 @@
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
},
"ignore": [],
"homepage": "https://github.com/PolymerElements/iron-resizable-behavior",
"homepage": "https://github.com/polymerelements/iron-resizable-behavior",
"_release": "1.0.3",
"_resolution": {
"type": "version",
"tag": "v1.0.3",
"commit": "dda1df6aaf452aedf3e52ff0cf69e72439452216"
},
"_source": "git://github.com/PolymerElements/iron-resizable-behavior.git",
"_source": "git://github.com/polymerelements/iron-resizable-behavior.git",
"_target": "^1.0.0",
"_originalSource": "PolymerElements/iron-resizable-behavior"
"_originalSource": "polymerelements/iron-resizable-behavior"
}

View file

@ -1,6 +1,6 @@
{
"name": "paper-input",
"version": "1.1.13",
"version": "1.1.14",
"description": "Material design text fields",
"authors": [
"The Polymer Authors"
@ -48,11 +48,11 @@
"web-component-tester": "^4.0.0",
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
},
"_release": "1.1.13",
"_release": "1.1.14",
"_resolution": {
"type": "version",
"tag": "v1.1.13",
"commit": "ce90cc77b23b8d0047715651940c48450f4d8d7b"
"tag": "v1.1.14",
"commit": "6f43713e93e1f3f21593b7f231f53bc19289fc42"
},
"_source": "git://github.com/PolymerElements/paper-input.git",
"_target": "^1.1.11",

View file

@ -1,6 +1,6 @@
{
"name": "paper-input",
"version": "1.1.13",
"version": "1.1.14",
"description": "Material design text fields",
"authors": [
"The Polymer Authors"

View file

@ -110,7 +110,7 @@ This element is `display:block` by default, but you can set the `inline` attribu
@apply(--paper-input-container);
}
:host[inline] {
:host([inline]) {
display: inline-block;
}

View file

@ -1,6 +1,6 @@
{
"name": "paper-ripple",
"version": "1.0.7",
"version": "1.0.8",
"license": "http://polymer.github.io/LICENSE.txt",
"description": "Adds a material design ripple to any container",
"private": true,
@ -18,7 +18,7 @@
},
"main": "paper-ripple.html",
"dependencies": {
"iron-a11y-keys-behavior": "polymerelements/iron-a11y-keys-behavior#^1.1.4",
"iron-a11y-keys-behavior": "polymerelements/iron-a11y-keys-behavior#^1.1.5",
"polymer": "Polymer/polymer#^1.1.0"
},
"devDependencies": {
@ -33,11 +33,11 @@
},
"ignore": [],
"homepage": "https://github.com/PolymerElements/paper-ripple",
"_release": "1.0.7",
"_release": "1.0.8",
"_resolution": {
"type": "version",
"tag": "v1.0.7",
"commit": "8f49ac1282a3603834e6a3a16926279ccee74489"
"tag": "v1.0.8",
"commit": "eb1c01cac162b7ce7e78760d5c0df61c9a5c2974"
},
"_source": "git://github.com/PolymerElements/paper-ripple.git",
"_target": "^1.0.0",

View file

@ -1,6 +1,6 @@
{
"name": "paper-ripple",
"version": "1.0.7",
"version": "1.0.8",
"license": "http://polymer.github.io/LICENSE.txt",
"description": "Adds a material design ripple to any container",
"private": true,
@ -18,7 +18,7 @@
},
"main": "paper-ripple.html",
"dependencies": {
"iron-a11y-keys-behavior": "polymerelements/iron-a11y-keys-behavior#^1.1.4",
"iron-a11y-keys-behavior": "polymerelements/iron-a11y-keys-behavior#^1.1.5",
"polymer": "Polymer/polymer#^1.1.0"
},
"devDependencies": {

View file

@ -211,6 +211,20 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
ripple.downAction();
ripple.upAction();
});
test('reuse a paper-ripple', function (done) {
var ripple = document.createElement('paper-ripple');
Polymer.dom(rippleContainer).appendChild(ripple);
Polymer.dom(rippleContainer).removeChild(ripple);
ripple.addEventListener('transitionend', function() {
expect(ripple.parentNode).to.be.ok;
Polymer.dom(document.body).removeChild(ripple);
done();
});
Polymer.dom(document.body).appendChild(ripple);
ripple.downAction();
ripple.upAction();
});
});
suite('avoid double transitionend event', function () {