| OLD | NEW |
| 1 | 1 |
| 2 Polymer({ | 2 Polymer({ |
| 3 is: 'paper-material', | 3 is: 'paper-material', |
| 4 | 4 |
| 5 enableCustomStyleProperties: true, | |
| 6 | |
| 7 properties: { | 5 properties: { |
| 8 | 6 |
| 9 /** | 7 /** |
| 10 * The z-depth of this element, from 0-5. Setting to 0 will remove the | 8 * The z-depth of this element, from 0-5. Setting to 0 will remove the |
| 11 * shadow, and each increasing number greater than 0 will be "deeper" | 9 * shadow, and each increasing number greater than 0 will be "deeper" |
| 12 * than the last. | 10 * than the last. |
| 13 * | 11 * |
| 14 * @attribute elevation | 12 * @attribute elevation |
| 15 * @type number | 13 * @type number |
| 16 * @default 1 | 14 * @default 1 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 29 * @type boolean | 27 * @type boolean |
| 30 * @default false | 28 * @default false |
| 31 */ | 29 */ |
| 32 animated: { | 30 animated: { |
| 33 type: Boolean, | 31 type: Boolean, |
| 34 reflectToAttribute: true, | 32 reflectToAttribute: true, |
| 35 value: false | 33 value: false |
| 36 } | 34 } |
| 37 } | 35 } |
| 38 }); | 36 }); |
| OLD | NEW |