Skip to content

Commit

Permalink
7.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed Jan 18, 2023
1 parent 2645067 commit bf6b6f5
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,19 @@

# Change Log

# [7.1.2](https://github.com/framework7io/framework7/compare/v7.1.1...v7.1.2) (2023-01-18)

### Bug Fixes

- **dialog:** remove margin-left on vertical buttons ([2645067](https://github.com/framework7io/framework7/commit/26450678cfbd37047e65abaaeb28d5a2f5648fc7)), closes [#4118](https://github.com/framework7io/framework7/issues/4118)
- **picker:** fixed issue with scrolling on chrome ([816898d](https://github.com/framework7io/framework7/commit/816898dd4057cf7226522d897b832af90e7c6a7a))
- **router:** initial url in somecase ([#4122](https://github.com/framework7io/framework7/issues/4122)) ([fe800cf](https://github.com/framework7io/framework7/commit/fe800cfdff6cf3377c186a3d3a12a6e8be9dcd5a))
- **types:** add notification `render` method arguments ([#4117](https://github.com/framework7io/framework7/issues/4117)) ([2d17f7a](https://github.com/framework7io/framework7/commit/2d17f7a16217af23966d4f09e7aef6b592d74384))

### Features

- **photo-browser:** disable Swiper's CSS mode by default ([def98a1](https://github.com/framework7io/framework7/commit/def98a131f5000905d8af4d6d3b8eebb0deb5df3))

# [7.1.1](https://github.com/framework7io/framework7/compare/v7.0.9...v7.1.1) (2022-12-16)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "framework7",
"version": "7.1.1",
"version": "7.1.2",
"description": "Full featured mobile HTML framework for building iOS & Android apps",
"type": "module",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
@@ -1,6 +1,6 @@
{
"name": "framework7-react",
"version": "7.1.1",
"version": "7.1.2",
"description": "Build full featured iOS & Android apps using Framework7 & React",
"type": "module",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/package.json
@@ -1,6 +1,6 @@
{
"name": "framework7-svelte",
"version": "7.1.1",
"version": "7.1.2",
"description": "Build full featured iOS & Android apps using Framework7 & Svelte",
"type": "module",
"svelte": "./framework7-svelte.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/framework7-vue-web-types.json
Expand Up @@ -2,7 +2,7 @@
"$schema": "http://json-schema.org/draft-04/schema#",
"framework": "vue",
"name": "framework7-vue",
"version": "7.1.1",
"version": "7.1.2",
"contributions": {
"html": {
"types-syntax": "typescript",
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/package.json
@@ -1,6 +1,6 @@
{
"name": "framework7-vue",
"version": "7.1.1",
"version": "7.1.2",
"description": "Build full featured iOS & Android apps using Framework7 & Vue",
"type": "module",
"exports": {
Expand Down
3 changes: 2 additions & 1 deletion src/core/modules/router/router-class.js
Expand Up @@ -313,7 +313,8 @@ class Router extends Framework7Class {
if (navEl.isSliding) {
if (navEl.isSubnavbar && oldIsLarge) {
$el.transform(
`translate3d(${offset * progress
`translate3d(${
offset * progress
}px, calc(-1 * var(--f7-navbar-large-collapse-progress) * var(--f7-navbar-large-title-height)), 0)`,
);
} else {
Expand Down

0 comments on commit bf6b6f5

Please sign in to comment.