Polymer aims to be a front-liner when it comes to W3C Web Components development, putting the building blocks to what will be considered standard programming methods with the technology Google deemed "the future of Web development."
In Polymer's architectural structure everything is a component and everything is reused as often as possible.
This reduces development time and adds a little bit more efficiency to the app's core code.
The Polymer library is framework agnostic, provides a set of reusable UI components that can be downloaded from its homepage, and also delivers a Starter Kit.
This latter feature is a fully-functional Web app boilerplate that can be deployed right away, providing all the basic code needed to run a Polymer-based website or mobile app.
What is new in this release:
- Do not configure compound property/attribute binding if literal if empty.
- Remove web-component-tester cache.
- Fix IE10 regressions.
- Allow _atEndOfMicrotask to be patchable.
- Factor into functions.
- Fix deepEqual on Safari 9 due to Safari enumeration bug.
What is new in version 1.2.4:
- Do not configure compound property/attribute binding if literal if empty.
- Remove web-component-tester cache.
- Fix IE10 regressions.
- Allow _atEndOfMicrotask to be patchable.
- Factor into functions.
- Fix deepEqual on Safari 9 due to Safari enumeration bug.
What is new in version 1.0.6:
- Brand-new, fast, and easy-to-use data binding system
- Element theming and styling using custom CSS properties
- Fast and lightweight Shadow DOM shim for non-supporting browsers
- "Behaviors" mechanism for sharing behavior between elements
What is new in version 0.5.5:
- Hotfix for Safari.
What is new in version 0.5.1:
- Fix a bug that prevented clicking on <a> links in ShadowDOM
- Polymer suspends the dirty-check loop when the tab is hidden
- Removed icon, iconSrc and label, use nested DOM for label content
What is new in version 0.3.3:
- Lots of bug fixes in Designer and elements loaded by designer
- Fewer missed taps on iOS
What is new in version 0.2.1:
- Fixed broken link to tooling strategy.
- Attempted to upgrade elements in HTMLImports before main document.
- Support createElementNS for HTML namespace.
- Fix for inline scripts that contain non-latin characters.
- Fix broken link to tooling strategy.
- Return the correct "buttons" value for touch.
What is new in version 0.0.20130711:
- More complex elements are registered with Polymer('tag-name', {prototype}) (was Polymer.register(this, {prototype})).
- Declaring elements is now <polymer-element name="tag-name"> (was <element name="tag-name">).
- Script scope is no longer special (e.g. this no longer refers to the element).
- Closures are not longer supported for private variables. Private vars should be done with the standard methods like anonymous self calling functions.
Requirements:
- JavaScript enabled on client side
Comments not found