Skip to content

Commit 00eaf69

Browse files
committed
3.0.0-beta.16 release
1 parent c0a8543 commit 00eaf69

40 files changed

+135
-79
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
# Change Log
44

5+
# [v3.0.0-beta.16](https://github.com/framework7io/framework7/compare/v3.0.0-beta.15...v3.0.0-beta.16) - July 1, 2018
6+
* Core
7+
* Searchbar - fixed issue with wrong `previousQuery` in `search` event
8+
* Phenome
9+
* ListItem has new `defaultChecked` prop to support React uncontrolled components
10+
* Minor fixes
11+
512
# [v3.0.0-beta.15](https://github.com/framework7io/framework7/compare/v3.0.0-beta.14...v3.0.0-beta.15) - June 27, 2018
613
* Phenome Components
714
* Fixes issue when React components could be rendered wrong in production build

package-lock.json

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

packages/core/components/searchbar/searchbar-class.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -379,9 +379,8 @@ class Searchbar extends FrameworkClass {
379379

380380
search(query, internal) {
381381
const sb = this;
382-
if (sb.previousQuery && query.trim() === sb.previousQuery) return sb;
383-
if (typeof (sb.previousQuery) !== 'undefined' && sb.previousQuery.trim() === '' && query.trim() === '') return sb;
384-
sb.previousQuery = query.trim();
382+
sb.previousQuery = sb.query || '';
383+
if (query === sb.previousQuery) return sb;
385384

386385
if (!internal) {
387386
if (!sb.enabled) {

packages/core/css/framework7.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
2-
* Framework7 3.0.0-beta.15
2+
* Framework7 3.0.0-beta.16
33
* Full featured mobile HTML framework for building iOS & Android apps
44
* http://framework7.io/
55
*
66
* Copyright 2014-2018 Vladimir Kharlampidi
77
*
88
* Released under the MIT License
99
*
10-
* Released on: June 27, 2018
10+
* Released on: July 1, 2018
1111
*/
1212
html,
1313
body,

packages/core/css/framework7.ios.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
2-
* Framework7 3.0.0-beta.15
2+
* Framework7 3.0.0-beta.16
33
* Full featured mobile HTML framework for building iOS & Android apps
44
* http://framework7.io/
55
*
66
* Copyright 2014-2018 Vladimir Kharlampidi
77
*
88
* Released under the MIT License
99
*
10-
* Released on: June 27, 2018
10+
* Released on: July 1, 2018
1111
*/
1212
html,
1313
body,

packages/core/css/framework7.ios.min.css

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

packages/core/css/framework7.md.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
2-
* Framework7 3.0.0-beta.15
2+
* Framework7 3.0.0-beta.16
33
* Full featured mobile HTML framework for building iOS & Android apps
44
* http://framework7.io/
55
*
66
* Copyright 2014-2018 Vladimir Kharlampidi
77
*
88
* Released under the MIT License
99
*
10-
* Released on: June 27, 2018
10+
* Released on: July 1, 2018
1111
*/
1212
html,
1313
body,

packages/core/css/framework7.md.min.css

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

packages/core/css/framework7.min.css

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

packages/core/css/framework7.rtl.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
2-
* Framework7 3.0.0-beta.15
2+
* Framework7 3.0.0-beta.16
33
* Full featured mobile HTML framework for building iOS & Android apps
44
* http://framework7.io/
55
*
66
* Copyright 2014-2018 Vladimir Kharlampidi
77
*
88
* Released under the MIT License
99
*
10-
* Released on: June 27, 2018
10+
* Released on: July 1, 2018
1111
*/
1212
html {
1313
direction: rtl;

0 commit comments

Comments
 (0)