Skip to content

Commit e91f225

Browse files
committed
3.6.5 release
1 parent 69aa200 commit e91f225

Some content is hidden

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

49 files changed

+206
-174
lines changed

CHANGELOG.md

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

33
# Change Log
44

5+
# [v3.6.5](https://github.com/framework7io/framework7/compare/v3.6.3...v3.6.5) - January 4, 2019
6+
* Core
7+
* Router
8+
* Now router methods will throw error if accessed on main app router, e.g. `app.router.navigate()`, it was never allowed, and done to avoid further issues
9+
* Minor fixes
10+
511
# [v3.6.3](https://github.com/framework7io/framework7/compare/v3.6.2...v3.6.3) - December 27, 2018
612
* Core
713
* Range

packages/core/components/app/app-class.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ declare class Framework7 implements Framework7 {
153153
constructor(parameters?: Framework7Params);
154154

155155
static use(plugin : Framework7Plugin) : void;
156+
static use(plugins : Framework7Plugin[]) : void;
156157
static device: Device;
157158
static request: Request;
158159
static support: Support;

packages/core/components/form/form.less

Whitespace-only changes.

packages/core/components/list/list.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ li.item-divider, .item-divider, li.list-group-title {
252252
overflow: hidden;
253253
z-index: 15;
254254
}
255-
li.list-group-title {
255+
li.list-group-title, .list li.list-group-title {
256256
position: relative;
257257
position: sticky;
258258
top: 0;

packages/core/components/toast/toast.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ export namespace Toast {
3131
closeButtonColor?: string
3232
/** Close button text (default Ok) */
3333
closeButtonText?: string
34+
/** Timeout delay (in ms) to close toast automatically */
35+
closeTimeout?: number
3436
/** Additional css class to add */
3537
cssClass?: string
3638
/** Destroys toast instance on close (default false) */

packages/core/css/framework7-lazy.css

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
2-
* Framework7 3.6.3
2+
* Framework7 3.6.5
33
* Full featured mobile HTML framework for building iOS & Android apps
44
* http://framework7.io/
55
*
6-
* Copyright 2014-2018 Vladimir Kharlampidi
6+
* Copyright 2014-2019 Vladimir Kharlampidi
77
*
88
* Released under the MIT License
99
*
10-
* Released on: December 27, 2018
10+
* Released on: January 4, 2019
1111
*/
1212
html,
1313
body,
@@ -3678,15 +3678,17 @@ li.list-group-title {
36783678
overflow: hidden;
36793679
z-index: 15;
36803680
}
3681-
li.list-group-title {
3681+
li.list-group-title,
3682+
.list li.list-group-title {
36823683
position: relative;
36833684
position: -webkit-sticky;
36843685
position: sticky;
36853686
top: 0;
36863687
margin-top: 0;
36873688
z-index: 20;
36883689
}
3689-
li.list-group-title:before {
3690+
li.list-group-title:before,
3691+
.list li.list-group-title:before {
36903692
display: none !important;
36913693
}
36923694
.list.inset .block-title {

packages/core/css/framework7-lazy.min.css

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

packages/core/css/framework7-lazy.rtl.css

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
2-
* Framework7 3.6.3
2+
* Framework7 3.6.5
33
* Full featured mobile HTML framework for building iOS & Android apps
44
* http://framework7.io/
55
*
6-
* Copyright 2014-2018 Vladimir Kharlampidi
6+
* Copyright 2014-2019 Vladimir Kharlampidi
77
*
88
* Released under the MIT License
99
*
10-
* Released on: December 27, 2018
10+
* Released on: January 4, 2019
1111
*/
1212
html {
1313
direction: rtl;
@@ -3682,15 +3682,17 @@ li.list-group-title {
36823682
overflow: hidden;
36833683
z-index: 15;
36843684
}
3685-
li.list-group-title {
3685+
li.list-group-title,
3686+
.list li.list-group-title {
36863687
position: relative;
36873688
position: -webkit-sticky;
36883689
position: sticky;
36893690
top: 0;
36903691
margin-top: 0;
36913692
z-index: 20;
36923693
}
3693-
li.list-group-title:before {
3694+
li.list-group-title:before,
3695+
.list li.list-group-title:before {
36943696
display: none !important;
36953697
}
36963698
.list.inset .block-title {

packages/core/css/framework7-lazy.rtl.min.css

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

packages/core/css/framework7.css

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
2-
* Framework7 3.6.3
2+
* Framework7 3.6.5
33
* Full featured mobile HTML framework for building iOS & Android apps
44
* http://framework7.io/
55
*
6-
* Copyright 2014-2018 Vladimir Kharlampidi
6+
* Copyright 2014-2019 Vladimir Kharlampidi
77
*
88
* Released under the MIT License
99
*
10-
* Released on: December 27, 2018
10+
* Released on: January 4, 2019
1111
*/
1212
html,
1313
body,
@@ -3678,15 +3678,17 @@ li.list-group-title {
36783678
overflow: hidden;
36793679
z-index: 15;
36803680
}
3681-
li.list-group-title {
3681+
li.list-group-title,
3682+
.list li.list-group-title {
36823683
position: relative;
36833684
position: -webkit-sticky;
36843685
position: sticky;
36853686
top: 0;
36863687
margin-top: 0;
36873688
z-index: 20;
36883689
}
3689-
li.list-group-title:before {
3690+
li.list-group-title:before,
3691+
.list li.list-group-title:before {
36903692
display: none !important;
36913693
}
36923694
.list.inset .block-title {

0 commit comments

Comments
 (0)