Skip to content

Commit b82aef4

Browse files
Version 2.2.2 release.
1 parent f97c50b commit b82aef4

File tree

10 files changed

+64
-39
lines changed

10 files changed

+64
-39
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22
CHANGELOG
33
====
44

5+
v2.2.2
6+
----
7+
8+
### New Features
9+
10+
* angular1: `ons-back-button` default behavior is now overriden if `ng-click` is provided.
11+
12+
### Bug Fixes
13+
14+
* css-components: Fixed [#1896](https://github.com/OnsenUI/OnsenUI/issues/1896).
15+
* core: Use `self` in `setImmediate` polyfill.
16+
* core: Make `ons.platform.isSafari()` compatible with Safari 10.
17+
* ons-lazy-repeat: Fixed [#1899](https://github.com/OnsenUI/OnsenUI/issues/1899) and [#1871](https://github.com/OnsenUI/OnsenUI/issues/1871).
18+
* angular1: Fixed [#1884](https://github.com/OnsenUI/OnsenUI/issues/1884).
19+
520
v2.2.1
621
----
722

@@ -65,6 +80,7 @@ v2.2.0
6580
* css-components: Renamed `.navigation-bar` to `.toolbar`.
6681
* css-components: Renamed `.list__item` to `.list-item`.
6782
* css-components: Renamed `.list__header` to `.list-header`.
83+
* css-components: Changed `.button-bar__item > input` to `.button-bar__input`.
6884
* ons-tabbar: loadPage method has been deprecated.
6985
* ons-popover: Changed internal DOM structure.
7086
* ons-range: Changed internal DOM structure.

css-components-src/src/components/fab.css

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
:root {
33
--fab-width: 56px;
44
--fab-height: 56px;
5+
--fab-position: absolute;
56
--fab-mini-width: 40px;
67
--fab-mini-height: 40px;
78

@@ -90,31 +91,31 @@
9091
bottom: auto;
9192
right: 20px;
9293
left: auto;
93-
position: fixed;
94+
position: var(--fab-position);
9495
}
9596

9697
.fab--bottom__right {
9798
top: auto;
9899
bottom: 20px;
99100
right: 20px;
100101
left: auto;
101-
position: fixed;
102+
position: var(--fab-position);
102103
}
103104

104105
.fab--top__left {
105106
top: 20px;
106107
bottom: auto;
107108
right: auto;
108109
left: 20px;
109-
position: fixed;
110+
position: var(--fab-position);
110111
}
111112

112113
.fab--bottom__left {
113114
top: auto;
114115
bottom: 20px;
115116
right: auto;
116117
left: 20px;
117-
position: fixed;
118+
position: var(--fab-position);
118119
}
119120

120121
.fab--top__center {
@@ -123,7 +124,7 @@
123124
margin-left: -28px;
124125
left: 50%;
125126
right: auto;
126-
position: fixed;
127+
position: var(--fab-position);
127128
}
128129

129130
.fab--bottom__center {
@@ -132,7 +133,7 @@
132133
margin-left: -28px;
133134
left: 50%;
134135
right: auto;
135-
position: fixed;
136+
position: var(--fab-position);
136137
}
137138

138139
/*~

css/onsen-css-components.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5454,44 +5454,44 @@ h4, h5, h6 {
54545454
bottom: auto;
54555455
right: 20px;
54565456
left: auto;
5457-
position: fixed;
5457+
position: absolute;
54585458
}
54595459
.fab--bottom__right {
54605460
top: auto;
54615461
bottom: 20px;
54625462
right: 20px;
54635463
left: auto;
5464-
position: fixed;
5464+
position: absolute;
54655465
}
54665466
.fab--top__left {
54675467
top: 20px;
54685468
bottom: auto;
54695469
right: auto;
54705470
left: 20px;
5471-
position: fixed;
5471+
position: absolute;
54725472
}
54735473
.fab--bottom__left {
54745474
top: auto;
54755475
bottom: 20px;
54765476
right: auto;
54775477
left: 20px;
5478-
position: fixed;
5478+
position: absolute;
54795479
}
54805480
.fab--top__center {
54815481
top: 20px;
54825482
bottom: auto;
54835483
margin-left: -28px;
54845484
left: 50%;
54855485
right: auto;
5486-
position: fixed;
5486+
position: absolute;
54875487
}
54885488
.fab--bottom__center {
54895489
top: auto;
54905490
bottom: 20px;
54915491
margin-left: -28px;
54925492
left: 50%;
54935493
right: auto;
5494-
position: fixed;
5494+
position: absolute;
54955495
}
54965496
/*~
54975497
name: Fab Mini

css/onsen-css-components.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/onsenui.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! onsenui - v2.2.1 - 2017-03-28 */
1+
/*! onsenui - v2.2.2 - 2017-04-06 */
22
/*
33
Copyright 2013-2015 ASIAL CORPORATION
44

js/angular-onsenui.js

Lines changed: 9 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/angular-onsenui.min.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/onsenui.js

Lines changed: 7 additions & 5 deletions
Large diffs are not rendered by default.

js/onsenui.min.js

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "onsenui",
3-
"version": "2.2.1",
3+
"version": "2.2.2",
44
"description": "HTML5 Mobile Framework & UI Components",
55
"private": false,
66
"author": "@kruyvanna",

0 commit comments

Comments
 (0)