Skip to content

Commit

Permalink
Version 2.10.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
asialgearoid committed Jul 3, 2018
1 parent d76d4f2 commit 86c1a54
Show file tree
Hide file tree
Showing 26 changed files with 153 additions and 83 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
CHANGELOG
====

2.10.2
---

### Bug Fixes

* ons-lazy-repeat: Fix dynamic adding of items ([#2443](https://github.com/OnsenUI/OnsenUI/issues/2443))
* ons-toast: Fix padding of Material toast ([#2436](https://github.com/OnsenUI/OnsenUI/issues/2436))
* ons-button: Remove dotted border on Firefox ([#2408](https://github.com/OnsenUI/OnsenUI/issues/2408))
* css: Fix CSS import paths ([#2336](https://github.com/OnsenUI/OnsenUI/issues/2336), [#2453](https://github.com/OnsenUI/OnsenUI/issues/2453))
* ons-input: Prevent zooming of inputs on iOS ([#2400](https://github.com/OnsenUI/OnsenUI/issues/2400)
* ons-page: Fix `page-with-bottom-toolbar` not being set in some cases ([#2459](https://github.com/OnsenUI/OnsenUI/issues/2459)

2.10.1
---

Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@
<p align="center"><a href="https://onsen.io/" target="_blank"><img width="140" src="https://onsenui.github.io/art/logos/onsenui-logo-1.png"></a></p>

<p align="center">
<a href="https://gitter.im/OnsenUI/OnsenUI"><img src="https://badges.gitter.im/Join%20Chat.svg" alt="Gitter Chat"></a>
<a href="https://community.onsen.io/"><img src="https://img.shields.io/badge/forum-onsen--ui-FF412D.svg" alt="Forum"></a>
<a href="https://github.com/OnsenUI/OnsenUI/blob/master/core/src/onsenui.d.ts"><img src="http://definitelytyped.org/badges/standard.svg" alt="TypeScript definitions"></a>
<br>
<a href="https://circleci.com/gh/OnsenUI/OnsenUI"><img src="https://circleci.com/gh/OnsenUI/OnsenUI.svg?style=shield" alt="Circle CI"></a>
<a href="https://coveralls.io/github/OnsenUI/OnsenUI?branch=master"><img src="https://coveralls.io/repos/OnsenUI/OnsenUI/badge.svg?branch=master&service=github" alt="Coverage Staus"></a>
<a href="https://badge.fury.io/js/onsenui"><img src="https://badge.fury.io/js/onsenui.svg" alt="NPM version"></a>
<a href="https://cdnjs.com/libraries/onsen"><img src="https://img.shields.io/cdnjs/v/onsen.svg" alt="CDNJS"></a>
</p>
Expand Down Expand Up @@ -109,4 +107,4 @@ Onsen UI is tested to work with the following browsers and mobile OS.
* Safari

## Contribution
We welcome your contribution, no matter how big or small! Please have a look at the [contribution guide](https://github.com/OnsenUI/OnsenUI/blob/master/.github/CONTRIBUTING.md) for details about project structure, development environment, test suite, code style, etc. All the version updates are mentioned in the [changelog](https://github.com/OnsenUI/OnsenUI/blob/master/CHANGELOG.md).
We welcome your contribution, no matter how big or small! Please have a look at the [contribution guide](https://github.com/OnsenUI/OnsenUI/blob/master/CONTRIBUTING.md) for details about project structure, development environment, test suite, code style, etc. All the version updates are mentioned in the [changelog](https://github.com/OnsenUI/OnsenUI/blob/master/CHANGELOG.md).
4 changes: 4 additions & 0 deletions css-components-src/src/components/button.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@
outline: 0;
}

--button::-moz-focus-inner {
border: 0;
}

--button--active: {
background-color: var(--button-background-color);
transition: none;
Expand Down
18 changes: 18 additions & 0 deletions css-components-src/src/components/list.css
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,24 @@
transition: background-color 0.2s linear;
}

/*~
name: Expandable List
category: List
elements: ons-list ons-list-item
markup: |
<ul class="list">
<li class="list-item list-item--expandable expanded">
<div class="list-item__top">
<div class="list-item__center">Item</div>
<div class="list-item__right">
<span class="list-item__expand-chevron"></span>
</div>
</div>
<div class="list-item__expandable-content">Expanded content</div>
</li>
</ul>
*/

.list-item__top {
display: flex;
flex-direction: row;
Expand Down
3 changes: 1 addition & 2 deletions css-components-src/src/components/text-input.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

:root {
--text-input-font-size: 15px;
--text-input-font-size: 16px;
--text-input-height: 31px;
--text-input-border-color: var(--input-border-color);
--material-text-input-font-size: 16px;
Expand Down Expand Up @@ -187,4 +187,3 @@
background-size: 100% 2px, 100% 2px;
}
}

2 changes: 1 addition & 1 deletion css-components-src/src/components/toast.css
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
margin: 0;
background-color: var(--material-toast-background-color);
border-radius: 0;
padding: 0 24px;
padding: 16px 24px;
}

.toast--material__message {
Expand Down
33 changes: 28 additions & 5 deletions css/dark-onsen-css-components.css
Original file line number Diff line number Diff line change
Expand Up @@ -1164,6 +1164,12 @@ h4, h5, h6 {
background-image: none;
border-bottom: none;
}
:root {

--button::-moz-focus-inner {
border: 0;
}
}
/*~
name: Button
category: Button
Expand Down Expand Up @@ -3419,6 +3425,23 @@ h4, h5, h6 {
color: #fff;
transition: background-color 0.2s linear;
}
/*~
name: Expandable List
category: List
elements: ons-list ons-list-item
markup: |
<ul class="list">
<li class="list-item list-item--expandable expanded">
<div class="list-item__top">
<div class="list-item__center">Item</div>
<div class="list-item__right">
<span class="list-item__expand-chevron"></span>
</div>
</div>
<div class="list-item__expandable-content">Expanded content</div>
</li>
</ul>
*/
.list-item__top {
display: -webkit-box;
display: -webkit-flex;
Expand Down Expand Up @@ -4553,7 +4576,7 @@ h4, h5, h6 {
padding: 0;
margin: 0;
width: auto;
font-size: 15px;
font-size: 16px;
height: 31px;
font-weight: 400;
box-sizing: border-box;
Expand Down Expand Up @@ -4635,7 +4658,7 @@ h4, h5, h6 {
padding: 0;
margin: 0;
width: auto;
font-size: 15px;
font-size: 16px;
height: 31px;
font-weight: 400;
box-sizing: border-box;
Expand Down Expand Up @@ -4820,7 +4843,7 @@ h4, h5, h6 {
resize: none;
outline: none;
padding: 5px 5px 5px 5px;
font-size: 15px;
font-size: 16px;
font-weight: 400;
border-radius: 4px;
border: 1px solid #242424;
Expand Down Expand Up @@ -4876,7 +4899,7 @@ h4, h5, h6 {
padding: 5px 5px 5px 5px;
padding-left: 0;
padding-right: 0;
font-size: 15px;
font-size: 16px;
font-weight: 400;
border-radius: 4px;
border: none;
Expand Down Expand Up @@ -6836,7 +6859,7 @@ h4, h5, h6 {
margin: 0;
background-color: #ccc;
border-radius: 0;
padding: 0 24px;
padding: 16px 24px;
}
.toast--material__message {
font-family: 'Roboto', 'Noto', sans-serif;
Expand Down
2 changes: 1 addition & 1 deletion css/dark-onsen-css-components.min.css

Large diffs are not rendered by default.

33 changes: 28 additions & 5 deletions css/old-onsen-css-components.css
Original file line number Diff line number Diff line change
Expand Up @@ -1164,6 +1164,12 @@ h4, h5, h6 {
background-image: none;
border-bottom: none;
}
:root {

--button::-moz-focus-inner {
border: 0;
}
}
/*~
name: Button
category: Button
Expand Down Expand Up @@ -3419,6 +3425,23 @@ h4, h5, h6 {
color: #1f1f21;
transition: background-color 0.2s linear;
}
/*~
name: Expandable List
category: List
elements: ons-list ons-list-item
markup: |
<ul class="list">
<li class="list-item list-item--expandable expanded">
<div class="list-item__top">
<div class="list-item__center">Item</div>
<div class="list-item__right">
<span class="list-item__expand-chevron"></span>
</div>
</div>
<div class="list-item__expandable-content">Expanded content</div>
</li>
</ul>
*/
.list-item__top {
display: -webkit-box;
display: -webkit-flex;
Expand Down Expand Up @@ -4553,7 +4576,7 @@ h4, h5, h6 {
padding: 0;
margin: 0;
width: auto;
font-size: 15px;
font-size: 16px;
height: 31px;
font-weight: 400;
box-sizing: border-box;
Expand Down Expand Up @@ -4635,7 +4658,7 @@ h4, h5, h6 {
padding: 0;
margin: 0;
width: auto;
font-size: 15px;
font-size: 16px;
height: 31px;
font-weight: 400;
box-sizing: border-box;
Expand Down Expand Up @@ -4820,7 +4843,7 @@ h4, h5, h6 {
resize: none;
outline: none;
padding: 5px 5px 5px 5px;
font-size: 15px;
font-size: 16px;
font-weight: 400;
border-radius: 4px;
border: 1px solid #ccc;
Expand Down Expand Up @@ -4876,7 +4899,7 @@ h4, h5, h6 {
padding: 5px 5px 5px 5px;
padding-left: 0;
padding-right: 0;
font-size: 15px;
font-size: 16px;
font-weight: 400;
border-radius: 4px;
border: none;
Expand Down Expand Up @@ -6836,7 +6859,7 @@ h4, h5, h6 {
margin: 0;
background-color: rgba(0, 0, 0, .8);
border-radius: 0;
padding: 0 24px;
padding: 16px 24px;
}
.toast--material__message {
font-family: 'Roboto', 'Noto', sans-serif;
Expand Down
2 changes: 1 addition & 1 deletion css/old-onsen-css-components.min.css

Large diffs are not rendered by default.

33 changes: 28 additions & 5 deletions css/onsen-css-components.css
Original file line number Diff line number Diff line change
Expand Up @@ -1164,6 +1164,12 @@ h4, h5, h6 {
background-image: none;
border-bottom: none;
}
:root {

--button::-moz-focus-inner {
border: 0;
}
}
/*~
name: Button
category: Button
Expand Down Expand Up @@ -3419,6 +3425,23 @@ h4, h5, h6 {
color: #1f1f21;
transition: background-color 0.2s linear;
}
/*~
name: Expandable List
category: List
elements: ons-list ons-list-item
markup: |
<ul class="list">
<li class="list-item list-item--expandable expanded">
<div class="list-item__top">
<div class="list-item__center">Item</div>
<div class="list-item__right">
<span class="list-item__expand-chevron"></span>
</div>
</div>
<div class="list-item__expandable-content">Expanded content</div>
</li>
</ul>
*/
.list-item__top {
display: -webkit-box;
display: -webkit-flex;
Expand Down Expand Up @@ -4553,7 +4576,7 @@ h4, h5, h6 {
padding: 0;
margin: 0;
width: auto;
font-size: 15px;
font-size: 16px;
height: 31px;
font-weight: 400;
box-sizing: border-box;
Expand Down Expand Up @@ -4635,7 +4658,7 @@ h4, h5, h6 {
padding: 0;
margin: 0;
width: auto;
font-size: 15px;
font-size: 16px;
height: 31px;
font-weight: 400;
box-sizing: border-box;
Expand Down Expand Up @@ -4820,7 +4843,7 @@ h4, h5, h6 {
resize: none;
outline: none;
padding: 5px 5px 5px 5px;
font-size: 15px;
font-size: 16px;
font-weight: 400;
border-radius: 4px;
border: 1px solid #ccc;
Expand Down Expand Up @@ -4876,7 +4899,7 @@ h4, h5, h6 {
padding: 5px 5px 5px 5px;
padding-left: 0;
padding-right: 0;
font-size: 15px;
font-size: 16px;
font-weight: 400;
border-radius: 4px;
border: none;
Expand Down Expand Up @@ -6836,7 +6859,7 @@ h4, h5, h6 {
margin: 0;
background-color: rgba(0, 0, 0, .8);
border-radius: 0;
padding: 0 24px;
padding: 16px 24px;
}
.toast--material__message {
font-family: 'Roboto', 'Noto', sans-serif;
Expand Down
2 changes: 1 addition & 1 deletion css/onsen-css-components.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/onsenui-core.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! onsenui - v2.10.1 - 2018-05-28 */
/*! onsenui - v2.10.2 - 2018-07-03 */
ons-page, ons-navigator,
ons-tabbar,
ons-gesture-detector {
Expand Down
Loading

0 comments on commit 86c1a54

Please sign in to comment.