Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(539)

Unified Diff: third_party/polymer/v0_8/components/iron-icon/iron-icon.html

Issue 1082403004: Import Polymer 0.8 and several key elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Also remove polymer/explainer Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/polymer/v0_8/components/iron-icon/iron-icon.html
diff --git a/third_party/polymer/v0_8/components/iron-icon/iron-icon.html b/third_party/polymer/v0_8/components/iron-icon/iron-icon.html
new file mode 100644
index 0000000000000000000000000000000000000000..6d1cc1dae2e8fc8ee5b690ace9db623966e30d0c
--- /dev/null
+++ b/third_party/polymer/v0_8/components/iron-icon/iron-icon.html
@@ -0,0 +1,154 @@
+<!--
+Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
+This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
+The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
+The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
+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
+-->
+<!--
+
+The `iron-icon` element displays an icon. By default an icon renders as a 24px square.
+
+Example using src:
+
+ <iron-icon src="star.png"></iron-icon>
+
+Example setting size to 32px x 32px:
+
+ <iron-icon class="big" src="big_star.png"></iron-icon>
+
+ <style>
+ .big {
+ height: 32px;
+ width: 32px;
+ }
+ </style>
+
+The iron elements include several sets of icons.
+To use the default set of icons, import `iron-icons.html` and use the `icon` attribute to specify an icon:
+
+ &lt;!-- import default iconset and iron-icon --&gt;
+ <link rel="import" href="/components/iron-icons/iron-icons.html">
+
+ <iron-icon icon="menu"></iron-icon>
+
+To use a different built-in set of icons, import `iron-icons/<iconset>-icons.html`, and
+specify the icon as `<iconset>:<icon>`. For example:
+
+ &lt;!-- import communication iconset and iron-icon --&gt;
+ <link rel="import" href="/components/iron-icons/communication-icons.html">
+
+ <iron-icon icon="communication:email"></iron-icon>
+
+You can also create custom icon sets of bitmap or SVG icons.
+
+Example of using an icon named `cherry` from a custom iconset with the ID `fruit`:
+
+ <iron-icon icon="fruit:cherry"></iron-icon>
+
+See [iron-iconset](#iron-iconset) and [iron-iconset-svg](#iron-iconset-svg) for more information about
+how to create a custom iconset.
+
+See [iron-icons](http://www.polymer-project.org/components/iron-icons/demo.html) for the default set of icons.
+
+@group Polymer Core Elements
+@element iron-icon
+@homepage polymer.github.io
+-->
+
+<link rel="import" href="../iron-meta/iron-meta.html">
+
+<dom-module id="iron-icon">
+
+ <style>
+ :host {
+ display: inline-flex;
+ position: relative;
+
+ vertical-align: middle;
+ align-items: center;
+ justify-content: center;
+
+ fill: currentcolor;
+
+ width: 24px;
+ height: 24px;
+ }
+ </style>
+
+ <template>
+ <iron-meta id="meta" type="iconset"></iron-meta>
+ </template>
+
+</dom-module>
+
+<script>
+
+ Polymer({
+
+ is: 'iron-icon',
+
+ properties: {
+
+ icon: {
+ type: String,
+ //value: '',
+ observer: '_iconChanged'
+ },
+
+ theme: {
+ type: String,
+ //value: '',
+ observer: '_updateIcon'
+ },
+
+ src: {
+ type: String,
+ //value: '',
+ observer: '_srcChanged'
+ }
+
+ },
+
+ _DEFAULT_ICONSET: 'icons',
+
+ _iconChanged: function(icon) {
+ var parts = (icon || '').split(':');
+ this._iconName = parts.pop();
+ this._iconsetName = parts.pop() || this._DEFAULT_ICONSET;
+ this._updateIcon();
+ },
+
+ _srcChanged: function(src) {
+ this._updateIcon();
+ },
+
+ _usesIconset: function() {
+ return this.icon || !this.src;
+ },
+
+ _updateIcon: function() {
+ if (this._usesIconset()) {
+ this._iconset = this.$.meta.byKey(this._iconsetName);
+ if (this._iconset) {
+ this._iconset.applyIcon(this, this._iconName, this.theme);
+ } else {
+ console.warn('iron-icon: could not find iconset `'
+ + this._iconsetName + '`, did you import the iconset?');
+ }
+ } else {
+ //if (this._iconset) {
+ // this._iconset.removeIcon(this.root);
+ //}
+ if (!this._img) {
+ this._img = document.createElement('img');
+ }
+ this._img.src = this.src;
+ Polymer.dom(this.root).appendChild(this._img);
+ }
+ }
+
+ });
+
+</script>
« no previous file with comments | « third_party/polymer/v0_8/components/iron-icon/index.html ('k') | third_party/polymer/v0_8/components/iron-icons/.bower.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698