Skip to content

Commit

Permalink
5.7.10 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed Jul 14, 2020
1 parent 1f53e72 commit 363964a
Show file tree
Hide file tree
Showing 39 changed files with 97 additions and 77 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

# Change Log

# [v5.7.10](https://github.com/framework7io/framework7/compare/v5.7.9...v5.7.10) - July 14, 2020
* Core
* Tooltip
* Fixed issue with positioning for SVG elements

# [v5.7.9](https://github.com/framework7io/framework7/compare/v5.7.8...v5.7.9) - July 12, 2020
* Core
* Router Component
Expand Down
2 changes: 1 addition & 1 deletion packages/core/components/tooltip.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions packages/core/components/tooltip/tooltip-class.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,11 @@ class Tooltip extends Framework7Class {
if ($targetEl && $targetEl.length > 0) {
targetWidth = $targetEl.outerWidth();
targetHeight = $targetEl.outerHeight();
if (typeof targetWidth === 'undefined' && typeof targetHeight === 'undefined') {
const clientRect = $targetEl[0].getBoundingClientRect();
targetWidth = clientRect.width;
targetHeight = clientRect.height;
}

const targetOffset = $targetEl.offset();
targetOffsetLeft = targetOffset.left - app.left;
Expand Down
4 changes: 2 additions & 2 deletions packages/core/css/framework7.bundle.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/**
* Framework7 5.7.9
* Framework7 5.7.10
* Full featured mobile HTML framework for building iOS & Android apps
* https://framework7.io/
*
* Copyright 2014-2020 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: July 12, 2020
* Released on: July 14, 2020
*/

/*====================
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
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/**
* Framework7 5.7.9
* Framework7 5.7.10
* Full featured mobile HTML framework for building iOS & Android apps
* https://framework7.io/
*
* Copyright 2014-2020 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: July 12, 2020
* Released on: July 14, 2020
*/

/*====================
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
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/**
* Framework7 5.7.9
* Framework7 5.7.10
* Full featured mobile HTML framework for building iOS & Android apps
* https://framework7.io/
*
* Copyright 2014-2020 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: July 12, 2020
* Released on: July 14, 2020
*/

/*====================
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
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/**
* Framework7 5.7.9
* Framework7 5.7.10
* Full featured mobile HTML framework for building iOS & Android apps
* https://framework7.io/
*
* Copyright 2014-2020 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: July 12, 2020
* Released on: July 14, 2020
*/

/*====================
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
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/**
* Framework7 5.7.9
* Framework7 5.7.10
* Full featured mobile HTML framework for building iOS & Android apps
* https://framework7.io/
*
* Copyright 2014-2020 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: July 12, 2020
* Released on: July 14, 2020
*/

import Template7 from 'template7';
Expand Down
4 changes: 2 additions & 2 deletions packages/core/framework7-lite.esm.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/**
* Framework7 5.7.9
* Framework7 5.7.10
* Full featured mobile HTML framework for building iOS & Android apps
* https://framework7.io/
*
* Copyright 2014-2020 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: July 12, 2020
* Released on: July 14, 2020
*/

import Template7 from 'template7';
Expand Down
4 changes: 2 additions & 2 deletions packages/core/framework7.bundle.less
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/**
* Framework7 5.7.9
* Framework7 5.7.10
* Full featured mobile HTML framework for building iOS & Android apps
* https://framework7.io/
*
* Copyright 2014-2020 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: July 12, 2020
* Released on: July 14, 2020
*/

@import (reference) './less/mixins.less';
Expand Down
4 changes: 2 additions & 2 deletions packages/core/framework7.esm.bundle.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/**
* Framework7 5.7.9
* Framework7 5.7.10
* Full featured mobile HTML framework for building iOS & Android apps
* https://framework7.io/
*
* Copyright 2014-2020 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: July 12, 2020
* Released on: July 14, 2020
*/

import Template7 from 'template7';
Expand Down
4 changes: 2 additions & 2 deletions packages/core/framework7.esm.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/**
* Framework7 5.7.9
* Framework7 5.7.10
* Full featured mobile HTML framework for building iOS & Android apps
* https://framework7.io/
*
* Copyright 2014-2020 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: July 12, 2020
* Released on: July 14, 2020
*/

import Template7 from 'template7';
Expand Down
4 changes: 2 additions & 2 deletions packages/core/framework7.less
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/**
* Framework7 5.7.9
* Framework7 5.7.10
* Full featured mobile HTML framework for building iOS & Android apps
* https://framework7.io/
*
* Copyright 2014-2020 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: July 12, 2020
* Released on: July 14, 2020
*/

@import (reference) './less/mixins.less';
Expand Down
13 changes: 9 additions & 4 deletions packages/core/js/framework7-lite.bundle.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/**
* Framework7 5.7.9
* Framework7 5.7.10
* Full featured mobile HTML framework for building iOS & Android apps
* https://framework7.io/
*
* Copyright 2014-2020 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: July 12, 2020
* Released on: July 14, 2020
*/

(function (global, factory) {
Expand Down Expand Up @@ -37173,6 +37173,11 @@
if ($targetEl && $targetEl.length > 0) {
targetWidth = $targetEl.outerWidth();
targetHeight = $targetEl.outerHeight();
if (typeof targetWidth === 'undefined' && typeof targetHeight === 'undefined') {
var clientRect = $targetEl[0].getBoundingClientRect();
targetWidth = clientRect.width;
targetHeight = clientRect.height;
}

var targetOffset = $targetEl.offset();
targetOffsetLeft = targetOffset.left - app.left;
Expand Down Expand Up @@ -40790,15 +40795,15 @@
};

/**
* Framework7 5.7.9
* Framework7 5.7.10
* Full featured mobile HTML framework for building iOS & Android apps
* https://framework7.io/
*
* Copyright 2014-2020 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: July 12, 2020
* Released on: July 14, 2020
*/

// 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
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/**
* Framework7 5.7.9
* Framework7 5.7.10
* Full featured mobile HTML framework for building iOS & Android apps
* https://framework7.io/
*
* Copyright 2014-2020 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: July 12, 2020
* Released on: July 14, 2020
*/

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

/**
* Framework7 5.7.9
* Framework7 5.7.10
* Full featured mobile HTML framework for building iOS & Android apps
* https://framework7.io/
*
* Copyright 2014-2020 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: July 12, 2020
* Released on: July 14, 2020
*/

// 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.

Loading

0 comments on commit 363964a

Please sign in to comment.