Julien Pradelle
Julien Pradelle
### Description Single quotes and double quotes are removed from CSS url parameter, breaking some url definitions such as ```css .foo { background-image: url("data:image/svg+xml;utf8,"); } ``` #### Live Demo https://jsfiddle.net/jpradell/kmygf23c/6/...
### Reference Issue Fixes #5693
In release note of v1.3.0 there is a sample code using "type: Function" in properties definition https://www.polymer-project.org/1.0/docs/release-notes#v1-3-0-dynamic-fns ``` translationService: { type: Function, value: function() { return function(str){ return str +...
Add Web-Types transformer to generate web-types files. Web-Types is a project to enable IDE auto-completion for web-components, currently implemented in IntelliJ and WebStorm: https://github.com/JetBrains/web-types For example after generating web-types file...
Analysis of Polymer custom components reports Polymer super class related properties and functions. The pull request adds ignore of this super class to get only component defined properties and function...
## Describe the bug When editor in used inside a WebComponent, click on toolbar more button doesn't open menu. Similar issue than #2477 ## To Reproduce Steps to reproduce the...
Analysis of Polymer custom components doesn't report Polymer events of properties with notify: true attribute. This pull request adds it according to documentation: https://polymer-library.polymer-project.org/3.0/docs/devguide/data-system#change-events Example of analyzed source ```js import...
Improve algorithm to identify whether a class is a LitElement or not. This should help with issue #148
I would like to force attribute name to be the exact snake-case version of property, like PolymerJS did, I added option `strictSnakeCase` to attribute-names rule to check that. With that...
I think it would be great to have a rule to forbid usage of attribute for a property if type is not natively convertible or if no converter is defined....