@polymer/polymer
Advanced tools
Comparing version 3.0.0-pre.4 to 3.0.0-pre.5
@@ -464,3 +464,2 @@ import { Element } from '../../polymer-element.js'; | ||
// Otherwise, re-render if the path changed matches an observed path | ||
path = path.substring(path.indexOf('.') + 1); | ||
let paths = this.__observePaths; | ||
@@ -467,0 +466,0 @@ for (let i=0; i<paths.length; i++) { |
{ | ||
"name": "@polymer/polymer", | ||
"flat": true, | ||
"version": "3.0.0-pre.4", | ||
"version": "3.0.0-pre.5", | ||
"contributors": [ | ||
@@ -18,4 +18,4 @@ "The Polymer Authors (http://polymer.github.io/AUTHORS.txt)" | ||
"devDependencies": { | ||
"wct-browser-legacy": "0.0.1-pre.10", | ||
"@polymer/test-fixture": "^3.0.0-pre.4" | ||
"wct-browser-legacy": "0.0.1-pre.11", | ||
"@polymer/test-fixture": "^3.0.0-pre.5" | ||
}, | ||
@@ -22,0 +22,0 @@ "resolutions": { |
@@ -328,2 +328,25 @@ import { Polymer } from '../../lib/legacy/polymer-fn.js'; | ||
_template: html` | ||
<template id="repeater" is="dom-repeat" items="{{items}}"> | ||
<x-foo itema-prop="{{item.prop.nestedProp}}"></x-foo> | ||
</template> | ||
`, | ||
is: 'x-repeat-filter-and-sort-by-nested-property', | ||
properties: { | ||
items: { | ||
value () { | ||
return [ | ||
{ prop: { nestedProp: 0 } }, | ||
{ prop: { nestedProp: 1 } }, | ||
{ prop: { nestedProp: 2 } }, | ||
{ prop: { nestedProp: 3 } }, | ||
{ prop: { nestedProp: 4 } }, | ||
]; | ||
} | ||
} | ||
} | ||
}); | ||
Polymer({ | ||
_template: html` | ||
<template id="repeat" is="dom-repeat" items="{{items}}"> | ||
@@ -330,0 +353,0 @@ <x-foo itema-prop="{{item.prop}}"></x-foo> |
@@ -5,3 +5,16 @@ { | ||
"test-fixture/test-fixture.html" | ||
] | ||
], | ||
"plugins": { | ||
"local": { | ||
"browserOptions": { | ||
"chrome": [ | ||
"headless", | ||
"disable-gpu" | ||
], | ||
"firefox": [ | ||
"-headless" | ||
] | ||
} | ||
} | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2638151
218
20803