Skip to content

Commit d8d1a52

Browse files
committed
1.7.0.2: Updated to Polymerfire 0.10.2
Needed to force this version because some parts of Polymer still refer to Polymerfire 0.9
1 parent 944491a commit d8d1a52

File tree

115 files changed

+8077
-2304
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+8077
-2304
lines changed

Diff for: README.md

+55-54
Large diffs are not rendered by default.

Diff for: bower.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "polymer-cdn",
3-
"version": "1.7.0",
3+
"version": "1.7.0.2",
44
"main": "polymer.js",
55
"homepage": "https://github.com/Download/polymer-cdn",
66
"authors": [
@@ -29,6 +29,11 @@
2929
"platinum-elements": "polymerelements/platinum-elements#latest",
3030
"app-elements": "polymerelements/app-elements#latest",
3131
"google-web-components": "GoogleWebComponents/google-web-components#latest",
32-
"molecules": "polymerelements/molecules#latest"
32+
"molecules": "polymerelements/molecules#latest",
33+
"polymerfire": "firebase/polymerfire#0.10.2"
34+
},
35+
"resolutions": {
36+
"polymerfire": "0.10.2",
37+
"firebase": ">= 3.5.1 < 4.0"
3338
}
3439
}

Diff for: lib/app-layout/.bower.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "app-layout",
3-
"version": "0.10.4",
3+
"version": "0.10.5",
44
"description": "A set of layout elements for your app",
55
"authors": [
66
"The Polymer Authors"
@@ -42,11 +42,11 @@
4242
},
4343
"ignore": [],
4444
"private": true,
45-
"_release": "0.10.4",
45+
"_release": "0.10.5",
4646
"_resolution": {
4747
"type": "version",
48-
"tag": "v0.10.4",
49-
"commit": "1e5a379af167b566c8333297bc729927d1466ca7"
48+
"tag": "v0.10.5",
49+
"commit": "df716eeaca72fb44608dc7032ec3c601af6e405b"
5050
},
5151
"_source": "git://github.com/PolymerElements/app-layout.git",
5252
"_target": "^0.10.0",

Diff for: lib/app-layout/README.md

+66-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,72 @@
1-
# App Layout [![Build Status](https://travis-ci.org/PolymerElements/app-layout.svg?branch=master)](https://travis-ci.org/PolymerElements/app-layout)
2-
1+
# App Layout [![Build Status](https://travis-ci.org/PolymerElements/app-layout.svg?branch=master)](https://travis-ci.org/PolymerElements/app-layout) [![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://beta.webcomponents.org/element/PolymerElements/app-layout)
32

43
[<img src="https://app-layout-assets.appspot.com/assets/docs/app-layout.png" width="300" height="210">](https://polymerelements.github.io/app-layout/)
54

5+
<!---
6+
```
7+
<custom-element-demo>
8+
<template>
9+
<script src="../webcomponentsjs/webcomponents-lite.min.js"></script>
10+
<link rel="import" href="app-drawer/app-drawer.html">
11+
<link rel="import" href="app-header/app-header.html">
12+
<link rel="import" href="app-toolbar/app-toolbar.html">
13+
<link rel="import" href="demo/sample-content.html">
14+
<link rel="import" href="../iron-icons/iron-icons.html">
15+
<link rel="import" href="../paper-icon-button/paper-icon-button.html">
16+
<link rel="import" href="../paper-progress/paper-progress.html">
17+
<style is="custom-style">
18+
body {
19+
margin: 0;
20+
font-family: 'Roboto', 'Noto', sans-serif;
21+
-webkit-font-smoothing: antialiased;
22+
}
23+
app-toolbar {
24+
background-color: #4285f4;
25+
color: #fff;
26+
}
27+
paper-icon-button + [main-title] {
28+
margin-left: 24px;
29+
}
30+
paper-progress {
31+
display: block;
32+
width: 100%;
33+
--paper-progress-active-color: rgba(255, 255, 255, 0.5);
34+
--paper-progress-container-color: transparent;
35+
}
36+
app-header {
37+
@apply(--layout-fixed-top);
38+
color: #fff;
39+
--app-header-background-rear-layer: {
40+
background-color: #ef6c00;
41+
};
42+
}
43+
app-drawer {
44+
--app-drawer-scrim-background: rgba(0, 0, 100, 0.8);
45+
--app-drawer-content-container: {
46+
background-color: #B0BEC5;
47+
}
48+
}
49+
</style>
50+
<next-code-block></next-code-block>
51+
</template>
52+
</custom-element-demo>
53+
```
54+
-->
55+
```html
56+
<app-header reveals>
57+
<app-toolbar>
58+
<paper-icon-button icon="menu" onclick="drawer.toggle()"></paper-icon-button>
59+
<div main-title>My app</div>
60+
<paper-icon-button icon="delete"></paper-icon-button>
61+
<paper-icon-button icon="search"></paper-icon-button>
62+
<paper-icon-button icon="close"></paper-icon-button>
63+
<paper-progress value="10" indeterminate bottom-item></paper-progress>
64+
</app-toolbar>
65+
</app-header>
66+
<app-drawer id="drawer" swipe-open></app-drawer>
67+
<sample-content size="10"></sample-content>
68+
```
69+
670
https://polymerelements.github.io/app-layout/
771

872
For additional documentation, please check out [Responsive app layout](https://www.polymer-project.org/1.0/toolbox/app-layout).

Diff for: lib/app-layout/app-header/app-header.html

+5-4
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,8 @@ <h1 main-title>App name</h1>
220220
@demo app-header/demo/music.html Reveals Demo
221221
@demo app-header/demo/no-effects.html Condenses and Reveals Demo
222222
@demo app-header/demo/notes.html Fixed with Dynamic Shadow Demo
223-
@demo app-header/demo/custom-sticky-element.html Custom Sticky Element Demo
223+
@demo app-header/demo/custom-sticky-element-1.html Custom Sticky Element Demo 1
224+
@demo app-header/demo/custom-sticky-element-2.html Custom Sticky Element Demo 2
224225
-->
225226

226227
<dom-module id="app-header">
@@ -645,9 +646,9 @@ <h1 main-title>App name</h1>
645646
*/
646647
_transformHeader: function(y) {
647648
this.translate3d(0, (-y) + 'px', 0);
648-
if (this._stickyEl && this.condenses && y >= this._stickyElTop) {
649-
this.translate3d(0, (Math.min(y, this._dHeight) - this._stickyElTop) + 'px', 0,
650-
this._stickyEl);
649+
if (this._stickyEl) {
650+
this.translate3d(0, this.condenses && y >= this._stickyElTop ?
651+
(Math.min(y, this._dHeight) - this._stickyElTop) + 'px' : 0, 0, this._stickyEl);
651652
}
652653
},
653654

Diff for: lib/app-layout/app-scroll-effects/app-scroll-effects-behavior.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@
277277
if ((effectDef = Polymer.AppLayout._scrollEffects[effectName])) {
278278
this._effects.push(this._boundEffect(effectDef, effectsConfig[effectName]));
279279
} else {
280-
this._warn(this._logf('_effectsChanged', this._getUndefinedMsg(effectName)));
280+
console.warn(this._getUndefinedMsg(effectName));
281281
}
282282
}
283283
}, this);
@@ -379,7 +379,7 @@
379379
* @param {string} id The id for the node.
380380
*/
381381
_getDOMRef: function(id) {
382-
this._warn(this._logf('_getDOMRef', '`'+ id +'` is undefined'));
382+
console.warn('_getDOMRef', '`'+ id +'` is undefined');
383383
},
384384

385385
_getUndefinedMsg: function(effectName) {

Diff for: lib/app-layout/app-scroll-effects/effects/resize-snapped-title.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
var fx = {};
2727

2828
if (!condensedTitle) {
29-
this._warn(this._logf('effects[resize-snapped-title]', 'undefined `condensed-title`'));
29+
console.warn('Scroll effect `resize-snapped-title`: undefined `condensed-title`');
3030
return false;
3131
}
3232
if (!title) {
33-
this._warn(this._logf('effects[resize-snapped-title]', 'undefined `main-title`'));
33+
console.warn('Scroll effect `resize-snapped-title`: undefined `main-title`');
3434
return false;
3535
}
3636

Diff for: lib/app-layout/app-scroll-effects/effects/resize-title.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@
2929
var condensedTitle = this._getDOMRef('condensedTitle');
3030

3131
if (!condensedTitle) {
32-
this._warn(this._logf('effects[resize-title]', 'undefined `condensed-title`'));
32+
console.warn('Scroll effect `resize-title`: undefined `condensed-title`');
3333
return false;
3434
}
3535
if (!title) {
36-
this._warn(this._logf('effects[resize-title]', 'undefined `main-title`'));
36+
console.warn('Scroll effect `resize-title`: undefined `main-title`');
3737
return false;
3838
}
3939

Diff for: lib/app-layout/bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "app-layout",
3-
"version": "0.10.4",
3+
"version": "0.10.5",
44
"description": "A set of layout elements for your app",
55
"authors": [
66
"The Polymer Authors"

Diff for: lib/firebase/.bower.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "firebase",
3-
"version": "3.4.1",
3+
"version": "3.5.2",
44
"homepage": "https://firebase.google.com",
55
"authors": [
66
"Firebase <[email protected]>"
@@ -23,13 +23,13 @@
2323
"test",
2424
"tests"
2525
],
26-
"_release": "3.4.1",
26+
"_release": "3.5.2",
2727
"_resolution": {
2828
"type": "version",
29-
"tag": "v3.4.1",
30-
"commit": "82b24fbe04b115ac21348302ed323fbb19644056"
29+
"tag": "v3.5.2",
30+
"commit": "cf5d9321b7a56e20314414f4967737f569c8ec63"
3131
},
3232
"_source": "https://github.com/firebase/firebase-bower.git",
33-
"_target": "^3.0",
33+
"_target": ">= 3.5.1 < 4.0",
3434
"_originalSource": "firebase"
3535
}

Diff for: lib/firebase/bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "firebase",
3-
"version": "3.4.1",
3+
"version": "3.5.2",
44
"homepage": "https://firebase.google.com",
55
"authors": [
66
"Firebase <[email protected]>"

0 commit comments

Comments
 (0)