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

update polymer components

This commit is contained in:
Luke Pulverenti 2015-09-28 23:35:38 -04:00
parent a8f094ae23
commit 6ef418cf8d
23 changed files with 46 additions and 46 deletions

View file

@ -1,6 +1,6 @@
{
"name": "iron-a11y-announcer",
"version": "1.0.2",
"version": "1.0.3",
"description": "A singleton element that simplifies announcing text to screen readers.",
"keywords": [
"web-components",
@ -30,11 +30,11 @@
"web-component-tester": "*"
},
"homepage": "https://github.com/polymerelements/iron-a11y-announcer",
"_release": "1.0.2",
"_release": "1.0.3",
"_resolution": {
"type": "version",
"tag": "v1.0.2",
"commit": "6010b30a67a12333f76394a558c820db727f7c84"
"tag": "v1.0.3",
"commit": "a5b8161326f11d68eacb5e9ea60694ebd779b48a"
},
"_source": "git://github.com/polymerelements/iron-a11y-announcer.git",
"_target": "^1.0.0",

View file

@ -1,6 +1,6 @@
{
"name": "iron-a11y-announcer",
"version": "1.0.2",
"version": "1.0.3",
"description": "A singleton element that simplifies announcing text to screen readers.",
"keywords": [
"web-components",

View file

@ -54,7 +54,7 @@ Note: announcements are only audible if you have a screen reader enabled.
</style>
<template>
<span aria-live$="[[mode]]">[[_text]]</span>
<div aria-live$="[[mode]]">[[_text]]</div>
</template>
<script>

View file

@ -1,6 +1,6 @@
{
"name": "iron-icons",
"version": "1.0.3",
"version": "1.0.4",
"description": "A set of icons for use with iron-icon",
"authors": [
"The Polymer Authors"
@ -34,11 +34,11 @@
"util",
"update-icons.sh"
],
"_release": "1.0.3",
"_release": "1.0.4",
"_resolution": {
"type": "version",
"tag": "v1.0.3",
"commit": "036325be99c33c052ac807a705aacad70be1127f"
"tag": "v1.0.4",
"commit": "1a54850a7196eb8d9d7ec1c4dea064972b7bfd4c"
},
"_source": "git://github.com/polymerelements/iron-icons.git",
"_target": "^1.0.0",

View file

@ -1,6 +1,6 @@
{
"name": "iron-icons",
"version": "1.0.3",
"version": "1.0.4",
"description": "A set of icons for use with iron-icon",
"authors": [
"The Polymer Authors"

View file

@ -27,7 +27,7 @@ See [iron-icon](#iron-icon) for more information about working with icons.
See [iron-iconset](#iron-iconset) and [iron-iconset-svg](#iron-iconset-svg) for more information about how to create a custom iconset.
@group Iron Elements
@element iron-icons
@pseudoElement iron-icons
@demo demo/index.html
-->

View file

@ -25,14 +25,14 @@
"web-component-tester": "*",
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
},
"homepage": "https://github.com/PolymerElements/iron-meta",
"homepage": "https://github.com/polymerelements/iron-meta",
"_release": "1.0.3",
"_resolution": {
"type": "version",
"tag": "v1.0.3",
"commit": "91529259262b0d8f33fed44bc3fd47aedf35cb04"
},
"_source": "git://github.com/PolymerElements/iron-meta.git",
"_source": "git://github.com/polymerelements/iron-meta.git",
"_target": "^1.0.0",
"_originalSource": "PolymerElements/iron-meta"
"_originalSource": "polymerelements/iron-meta"
}

View file

@ -42,7 +42,7 @@
"tag": "v1.0.4",
"commit": "a7ac7fbdb79b4d82416ec9b41613575386d0d226"
},
"_source": "git://github.com/polymerelements/paper-behaviors.git",
"_source": "git://github.com/PolymerElements/paper-behaviors.git",
"_target": "^1.0.0",
"_originalSource": "polymerelements/paper-behaviors"
"_originalSource": "PolymerElements/paper-behaviors"
}

View file

@ -1,7 +1,7 @@
{
"name": "webcomponentsjs",
"main": "webcomponents.js",
"version": "0.7.13",
"version": "0.7.14",
"homepage": "http://webcomponents.org",
"authors": [
"The Polymer Authors"
@ -15,11 +15,11 @@
],
"license": "BSD",
"ignore": [],
"_release": "0.7.13",
"_release": "0.7.14",
"_resolution": {
"type": "version",
"tag": "v0.7.13",
"commit": "e53b558e1f4e8087265f7ba7f03fb928f21a845b"
"tag": "v0.7.14",
"commit": "48194e673b7a0a8810b32320e0444b512e5a7557"
},
"_source": "git://github.com/Polymer/webcomponentsjs.git",
"_target": "^0.7.2",

View file

@ -7,7 +7,7 @@
* Code distributed by Google as part of the polymer project is also
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
// @version 0.7.13
// @version 0.7.14
if (typeof WeakMap === "undefined") {
(function() {
var defineProperty = Object.defineProperty;
@ -946,7 +946,7 @@ window.CustomElements.addModule(function(scope) {
});
});
}
if (!window.CustomEvent) {
if (!window.CustomEvent || isIE && typeof window.CustomEvent !== "function") {
window.CustomEvent = function(inType, params) {
params = params || {};
var e = document.createEvent("CustomEvent");

File diff suppressed because one or more lines are too long

View file

@ -7,7 +7,7 @@
* Code distributed by Google as part of the polymer project is also
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
// @version 0.7.13
// @version 0.7.14
if (typeof WeakMap === "undefined") {
(function() {
var defineProperty = Object.defineProperty;
@ -1061,7 +1061,7 @@ window.HTMLImports.addModule(function(scope) {
if (scope.useNative) {
return;
}
if (!window.CustomEvent) {
if (!window.CustomEvent || isIE && typeof window.CustomEvent !== "function") {
window.CustomEvent = function(inType, params) {
params = params || {};
var e = document.createEvent("CustomEvent");

File diff suppressed because one or more lines are too long

View file

@ -7,7 +7,7 @@
* Code distributed by Google as part of the polymer project is also
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
// @version 0.7.13
// @version 0.7.14
if (typeof WeakMap === "undefined") {
(function() {
var defineProperty = Object.defineProperty;

File diff suppressed because one or more lines are too long

View file

@ -7,7 +7,7 @@
* Code distributed by Google as part of the polymer project is also
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
// @version 0.7.13
// @version 0.7.14
if (typeof WeakMap === "undefined") {
(function() {
var defineProperty = Object.defineProperty;

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{
"name": "webcomponentsjs",
"main": "webcomponents.js",
"version": "0.7.13",
"version": "0.7.14",
"homepage": "http://webcomponents.org",
"authors": [
"The Polymer Authors"

View file

@ -1,6 +1,6 @@
{
"name": "webcomponents.js",
"version": "0.7.13",
"version": "0.7.14",
"description": "webcomponents.js",
"main": "webcomponents.js",
"directories": {

View file

@ -7,7 +7,7 @@
* Code distributed by Google as part of the polymer project is also
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
// @version 0.7.13
// @version 0.7.14
window.WebComponents = window.WebComponents || {};
(function(scope) {
@ -1629,7 +1629,7 @@ window.HTMLImports.addModule(function(scope) {
if (scope.useNative) {
return;
}
if (!window.CustomEvent) {
if (!window.CustomEvent || isIE && typeof window.CustomEvent !== "function") {
window.CustomEvent = function(inType, params) {
params = params || {};
var e = document.createEvent("CustomEvent");
@ -2260,7 +2260,7 @@ window.CustomElements.addModule(function(scope) {
});
});
}
if (!window.CustomEvent) {
if (!window.CustomEvent || isIE && typeof window.CustomEvent !== "function") {
window.CustomEvent = function(inType, params) {
params = params || {};
var e = document.createEvent("CustomEvent");

File diff suppressed because one or more lines are too long

View file

@ -7,7 +7,7 @@
* Code distributed by Google as part of the polymer project is also
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
// @version 0.7.13
// @version 0.7.14
window.WebComponents = window.WebComponents || {};
(function(scope) {
@ -6416,7 +6416,7 @@ window.HTMLImports.addModule(function(scope) {
if (scope.useNative) {
return;
}
if (!window.CustomEvent) {
if (!window.CustomEvent || isIE && typeof window.CustomEvent !== "function") {
window.CustomEvent = function(inType, params) {
params = params || {};
var e = document.createEvent("CustomEvent");
@ -7047,7 +7047,7 @@ window.CustomElements.addModule(function(scope) {
});
});
}
if (!window.CustomEvent) {
if (!window.CustomEvent || isIE && typeof window.CustomEvent !== "function") {
window.CustomEvent = function(inType, params) {
params = params || {};
var e = document.createEvent("CustomEvent");

File diff suppressed because one or more lines are too long