Skip to content

Commit

Permalink
5.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed Nov 3, 2019
1 parent 9bdc59d commit ff7999b
Show file tree
Hide file tree
Showing 225 changed files with 26,117 additions and 30,490 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,16 @@

# Change Log

# [v5.1.1](https://github.com/framework7io/framework7/compare/v5.1.0...v5.1.1) - November 3, 2019
* Core
* Calendar
* Fixed `d`, `m`, `D`, `M` tokens parsing in custom date format
* Photo Browser
* Fixed issue when opening PhotoBrowser on not first slide can cause empty text in its Navbar
* Router Component
* New syntax to use custom components in strict HTML layout using `component` attribute, e.g. `<tr component="my-table-row"></tr>` instead of `<my-table-row></my-table-row>`
* Minor fixes

# [v5.1.0](https://github.com/framework7io/framework7/compare/v5.0.5...v5.1.0) - October 27, 2019
* Core
* Grid
Expand Down
2 changes: 1 addition & 1 deletion packages/core/components/calendar.js

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion packages/core/components/calendar/calendar-class.js
Expand Up @@ -499,12 +499,16 @@ class Calendar extends Framework7Class {
.replace(/yy/g, String(year).substring(2))
.replace(/mm/g, month1 < 10 ? `0${month1}` : month1)
.replace(/m(\W+)/g, `${month1}$1`)
.replace(/(\W+)m/g, `$1${month1}`)
.replace(/MM/g, monthNames[month])
.replace(/M(\W+)/g, `${monthNamesShort[month]}$1`)
.replace(/(\W+)M/g, `$1${monthNamesShort[month]}`)
.replace(/dd/g, day < 10 ? `0${day}` : day)
.replace(/d(\W+)/g, `${day}$1`)
.replace(/(\W+)d/g, `$1${day}`)
.replace(/DD/g, dayNames[weekDay])
.replace(/D(\W+)/g, `${dayNamesShort[weekDay]}$1`);
.replace(/D(\W+)/g, `${dayNamesShort[weekDay]}$1`)
.replace(/(\W+)D/g, `$1${dayNamesShort[weekDay]}`);
}
if (typeof dateFormat === 'function') {
return dateFormat(date);
Expand Down
2 changes: 1 addition & 1 deletion packages/core/components/photo-browser.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/core/components/photo-browser/photo-browser-class.js
Expand Up @@ -372,8 +372,6 @@ class PhotoBrowser extends Framework7Class {
pb.emit('local::doubleClick', e);
},
slideChange(...args) {
const swiper = this;
pb.onSlideChange(swiper);
pb.emit('local::slideChange', ...args);
},
transitionStart(...args) {
Expand All @@ -383,6 +381,8 @@ class PhotoBrowser extends Framework7Class {
pb.emit('local::transitionEnd', ...args);
},
slideChangeTransitionStart(...args) {
const swiper = this;
pb.onSlideChange(swiper);
pb.emit('local::slideChangeTransitionStart', ...args);
},
slideChangeTransitionEnd(...args) {
Expand Down
4 changes: 2 additions & 2 deletions packages/core/css/framework7.bundle.css
@@ -1,13 +1,13 @@
/**
* Framework7 5.1.0
* Framework7 5.1.1
* Full featured mobile HTML framework for building iOS & Android apps
* http://framework7.io/
*
* Copyright 2014-2019 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: October 27, 2019
* Released on: November 3, 2019
*/

/*====================
Expand Down
4 changes: 2 additions & 2 deletions packages/core/css/framework7.bundle.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/core/css/framework7.bundle.rtl.css
@@ -1,13 +1,13 @@
/**
* Framework7 5.1.0
* Framework7 5.1.1
* Full featured mobile HTML framework for building iOS & Android apps
* http://framework7.io/
*
* Copyright 2014-2019 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: October 27, 2019
* Released on: November 3, 2019
*/

/*====================
Expand Down
4 changes: 2 additions & 2 deletions packages/core/css/framework7.bundle.rtl.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/core/css/framework7.css
@@ -1,13 +1,13 @@
/**
* Framework7 5.1.0
* Framework7 5.1.1
* Full featured mobile HTML framework for building iOS & Android apps
* http://framework7.io/
*
* Copyright 2014-2019 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: October 27, 2019
* Released on: November 3, 2019
*/

/*====================
Expand Down
4 changes: 2 additions & 2 deletions packages/core/css/framework7.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/core/css/framework7.rtl.css
@@ -1,13 +1,13 @@
/**
* Framework7 5.1.0
* Framework7 5.1.1
* Full featured mobile HTML framework for building iOS & Android apps
* http://framework7.io/
*
* Copyright 2014-2019 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: October 27, 2019
* Released on: November 3, 2019
*/

/*====================
Expand Down
4 changes: 2 additions & 2 deletions packages/core/css/framework7.rtl.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/core/framework7-lite.esm.bundle.js
@@ -1,13 +1,13 @@
/**
* Framework7 5.1.0
* Framework7 5.1.1
* Full featured mobile HTML framework for building iOS & Android apps
* http://framework7.io/
*
* Copyright 2014-2019 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: October 27, 2019
* Released on: November 3, 2019
*/

import Template7 from 'template7';
Expand Down
4 changes: 2 additions & 2 deletions packages/core/framework7-lite.esm.js
@@ -1,13 +1,13 @@
/**
* Framework7 5.1.0
* Framework7 5.1.1
* Full featured mobile HTML framework for building iOS & Android apps
* http://framework7.io/
*
* Copyright 2014-2019 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: October 27, 2019
* Released on: November 3, 2019
*/

import Template7 from 'template7';
Expand Down
4 changes: 2 additions & 2 deletions packages/core/framework7.bundle.less
@@ -1,13 +1,13 @@
/**
* Framework7 5.1.0
* Framework7 5.1.1
* Full featured mobile HTML framework for building iOS & Android apps
* http://framework7.io/
*
* Copyright 2014-2019 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: October 27, 2019
* Released on: November 3, 2019
*/

@import (reference) './less/mixins.less';
Expand Down
4 changes: 2 additions & 2 deletions packages/core/framework7.esm.bundle.js
@@ -1,13 +1,13 @@
/**
* Framework7 5.1.0
* Framework7 5.1.1
* Full featured mobile HTML framework for building iOS & Android apps
* http://framework7.io/
*
* Copyright 2014-2019 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: October 27, 2019
* Released on: November 3, 2019
*/

import Template7 from 'template7';
Expand Down
4 changes: 2 additions & 2 deletions packages/core/framework7.esm.js
@@ -1,13 +1,13 @@
/**
* Framework7 5.1.0
* Framework7 5.1.1
* Full featured mobile HTML framework for building iOS & Android apps
* http://framework7.io/
*
* Copyright 2014-2019 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: October 27, 2019
* Released on: November 3, 2019
*/

import Template7 from 'template7';
Expand Down
4 changes: 2 additions & 2 deletions packages/core/framework7.less
@@ -1,13 +1,13 @@
/**
* Framework7 5.1.0
* Framework7 5.1.1
* Full featured mobile HTML framework for building iOS & Android apps
* http://framework7.io/
*
* Copyright 2014-2019 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: October 27, 2019
* Released on: November 3, 2019
*/

@import (reference) './less/mixins.less';
Expand Down
18 changes: 11 additions & 7 deletions packages/core/js/framework7-lite.bundle.js
@@ -1,13 +1,13 @@
/**
* Framework7 5.1.0
* Framework7 5.1.1
* Full featured mobile HTML framework for building iOS & Android apps
* http://framework7.io/
*
* Copyright 2014-2019 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: October 27, 2019
* Released on: November 3, 2019
*/

(function (global, factory) {
Expand Down Expand Up @@ -21381,12 +21381,16 @@
.replace(/yy/g, String(year).substring(2))
.replace(/mm/g, month1 < 10 ? ("0" + month1) : month1)
.replace(/m(\W+)/g, (month1 + "$1"))
.replace(/(\W+)m/g, ("$1" + month1))
.replace(/MM/g, monthNames[month])
.replace(/M(\W+)/g, ((monthNamesShort[month]) + "$1"))
.replace(/(\W+)M/g, ("$1" + (monthNamesShort[month])))
.replace(/dd/g, day < 10 ? ("0" + day) : day)
.replace(/d(\W+)/g, (day + "$1"))
.replace(/(\W+)d/g, ("$1" + day))
.replace(/DD/g, dayNames[weekDay])
.replace(/D(\W+)/g, ((dayNamesShort[weekDay]) + "$1"));
.replace(/D(\W+)/g, ((dayNamesShort[weekDay]) + "$1"))
.replace(/(\W+)D/g, ("$1" + (dayNamesShort[weekDay])));
}
if (typeof dateFormat === 'function') {
return dateFormat(date);
Expand Down Expand Up @@ -34131,8 +34135,6 @@
var args = [], len = arguments.length;
while ( len-- ) args[ len ] = arguments[ len ];

var swiper = this;
pb.onSlideChange(swiper);
pb.emit.apply(pb, [ 'local::slideChange' ].concat( args ));
},
transitionStart: function transitionStart() {
Expand All @@ -34151,6 +34153,8 @@
var args = [], len = arguments.length;
while ( len-- ) args[ len ] = arguments[ len ];

var swiper = this;
pb.onSlideChange(swiper);
pb.emit.apply(pb, [ 'local::slideChangeTransitionStart' ].concat( args ));
},
slideChangeTransitionEnd: function slideChangeTransitionEnd() {
Expand Down Expand Up @@ -39349,15 +39353,15 @@
};

/**
* Framework7 5.1.0
* Framework7 5.1.1
* Full featured mobile HTML framework for building iOS & Android apps
* http://framework7.io/
*
* Copyright 2014-2019 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: October 27, 2019
* Released on: November 3, 2019
*/

// Install Core Modules & Components
Expand Down
6 changes: 3 additions & 3 deletions packages/core/js/framework7-lite.bundle.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/core/js/framework7-lite.bundle.min.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions packages/core/js/framework7-lite.js
@@ -1,13 +1,13 @@
/**
* Framework7 5.1.0
* Framework7 5.1.1
* Full featured mobile HTML framework for building iOS & Android apps
* http://framework7.io/
*
* Copyright 2014-2019 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: October 27, 2019
* Released on: November 3, 2019
*/

(function (global, factory) {
Expand Down Expand Up @@ -11318,15 +11318,15 @@
};

/**
* Framework7 5.1.0
* Framework7 5.1.1
* Full featured mobile HTML framework for building iOS & Android apps
* http://framework7.io/
*
* Copyright 2014-2019 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: October 27, 2019
* Released on: November 3, 2019
*/

// Install Core Modules & Components
Expand Down
4 changes: 2 additions & 2 deletions packages/core/js/framework7-lite.min.js

Large diffs are not rendered by default.

0 comments on commit ff7999b

Please sign in to comment.