Skip to content

Commit 69bc908

Browse files
committed
8.1.0
1 parent f4c4c7e commit 69bc908

File tree

8 files changed

+36
-19
lines changed

8 files changed

+36
-19
lines changed

CHANGELOG.md

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

33
# Change Log
44

5+
# [8.1.0](https://github.com/framework7io/framework7/compare/v8.0.5...v8.1.0) (2023-06-12)
6+
7+
### Bug Fixes
8+
9+
- **calendar:** fix range styles if same day selected ([84eaf76](https://github.com/framework7io/framework7/commit/84eaf76b46b20327018bee71f21da84e3ca095dc)), closes [#4191](https://github.com/framework7io/framework7/issues/4191)
10+
- **core:** hide scrollbar where required in FireFix ([f4c4c7e](https://github.com/framework7io/framework7/commit/f4c4c7e90b1b4eb2a12a587219ba59ff275e9514)), closes [#4189](https://github.com/framework7io/framework7/issues/4189)
11+
- **core:** translucent now applies in iOS theme not depending on iOS device ([06b8970](https://github.com/framework7io/framework7/commit/06b897020548ca73bea9c19f16a168834a3b7322))
12+
- **messagebar:** fix `textareaId` to be passed to textarea element ([b3b10b2](https://github.com/framework7io/framework7/commit/b3b10b235421d7c5cde0ca54dfdddc45ac1d8f4c))
13+
- **panel:** fix panel closed without transition when opened with swipe ([be8492c](https://github.com/framework7io/framework7/commit/be8492cba29bab92fbdaa53bc4aaf81377f180d1))
14+
- **popover:** fix ignored `arrow` prop in Popover components ([feaa823](https://github.com/framework7io/framework7/commit/feaa8231798f60a72ea8a3049a2b389de178c3b6))
15+
- **progressbar:** fix wrong style applied in Svelte component ([4604b1f](https://github.com/framework7io/framework7/commit/4604b1f861fdfe8d25b2a15696288b0d3e8f96bf)), closes [#4183](https://github.com/framework7io/framework7/issues/4183)
16+
- **router:** fix for correct navigate if used route path format like `/:optionalParam(any+[regexp]+)?` ([#4179](https://github.com/framework7io/framework7/issues/4179)) ([6d40482](https://github.com/framework7io/framework7/commit/6d40482d0b526ce1c368b68d83bc7abfa52823df))
17+
- **router:** fix routable modal destroy if modal route has `async` prop ([1234e78](https://github.com/framework7io/framework7/commit/1234e78967d3c9e9ea3055e7505d33ae4e8eb5db))
18+
- **searchbar:** remove unused clear button layer ([4e13c36](https://github.com/framework7io/framework7/commit/4e13c36b201140cd41e9a83ca32368bd3dd44430))
19+
20+
### Features
21+
22+
- **list-index:** tweak label colors in MD theme ([b797d9b](https://github.com/framework7io/framework7/commit/b797d9bdc57785ec5358e7b5d003a7df57737236))
23+
- **notification:** increase notifiaction transition duration and paddings in MD theme ([27f211e](https://github.com/framework7io/framework7/commit/27f211efe0fc4757e5abc39b9ad0c426e3172174))
24+
- **picker:** full width single column picker scrolling ([04ca371](https://github.com/framework7io/framework7/commit/04ca371f929f25d6fd8f92aeac50ac8b39d6070a))
25+
- **pull-to-refresh:** tweak md colors ([b014a34](https://github.com/framework7io/framework7/commit/b014a34229cf21528cb7b21b0ed3402e21c33997))
26+
527
# [8.0.5](https://github.com/framework7io/framework7/compare/v8.0.4...v8.0.5) (2023-05-08)
628

729
### Bug Fixes

kitchen-sink/core/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<meta name="theme-color" content="#fff">
1111
<meta http-equiv="Content-Security-Policy" content="default-src * 'self' 'unsafe-inline' 'unsafe-eval' data:">
1212
<title>Framework7</title>
13-
<link rel="stylesheet" href="../../build/core/framework7-bundle.css">
13+
<link rel="stylesheet" href="../../packages/core/framework7-bundle.min.css">
1414
<link rel="stylesheet" href="css/app.css">
1515
<link rel="apple-touch-icon" href="img/f7-icon-square.png">
1616
<link rel="icon" href="img/f7-icon.png">
@@ -104,7 +104,7 @@
104104
</div>
105105
<div class="view view-main view-init safe-areas" data-master-detail-breakpoint="768" data-url="/"></div>
106106
</div>
107-
<script src="../../build/core/framework7-bundle.js"></script>
107+
<script src="../../packages/core/framework7-bundle.min.js"></script>
108108
<script src="js/routes.js"></script>
109109
<script src="js/store.js"></script>
110110
<script src="js/app.js"></script>

kitchen-sink/svelte/src/pages/segmented.svelte

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
<script>
2-
import {
3-
Page,
4-
Navbar,
5-
Block,
6-
Segmented,
7-
Button,
8-
} from 'framework7-svelte';
9-
let activeStrongButton = 0;
2+
import { Page, Navbar, Block, Segmented, Button } from 'framework7-svelte';
3+
4+
let activeStrongButton = 0;
105
</script>
116

127
<!-- svelte-ignore a11y-invalid-attribute -->

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "framework7",
3-
"version": "8.0.5",
3+
"version": "8.1.0",
44
"description": "Full featured mobile HTML framework for building iOS & Android apps",
55
"type": "module",
66
"exports": {
@@ -436,5 +436,5 @@
436436
"ssr-window": "^4.0.2",
437437
"swiper": "^9.2.0"
438438
},
439-
"releaseDate": "May 8, 2023"
439+
"releaseDate": "June 12, 2023"
440440
}

packages/react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "framework7-react",
3-
"version": "8.0.5",
3+
"version": "8.1.0",
44
"description": "Build full featured iOS & Android apps using Framework7 & React",
55
"type": "module",
66
"exports": {
@@ -47,5 +47,5 @@
4747
"type": "patreon",
4848
"url": "https://www.patreon.com/framework7"
4949
},
50-
"releaseDate": "May 8, 2023"
50+
"releaseDate": "June 12, 2023"
5151
}

packages/svelte/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "framework7-svelte",
3-
"version": "8.0.5",
3+
"version": "8.1.0",
44
"description": "Build full featured iOS & Android apps using Framework7 & Svelte",
55
"type": "module",
66
"svelte": "./framework7-svelte.js",
@@ -46,5 +46,5 @@
4646
"type": "patreon",
4747
"url": "https://www.patreon.com/framework7"
4848
},
49-
"releaseDate": "May 8, 2023"
49+
"releaseDate": "June 12, 2023"
5050
}

packages/vue/framework7-vue-web-types.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "http://json-schema.org/draft-04/schema#",
33
"framework": "vue",
44
"name": "framework7-vue",
5-
"version": "8.0.5",
5+
"version": "8.1.0",
66
"contributions": {
77
"html": {
88
"types-syntax": "typescript",

packages/vue/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "framework7-vue",
3-
"version": "8.0.5",
3+
"version": "8.1.0",
44
"description": "Build full featured iOS & Android apps using Framework7 & Vue",
55
"type": "module",
66
"exports": {
@@ -55,5 +55,5 @@
5555
"type": "patreon",
5656
"url": "https://www.patreon.com/framework7"
5757
},
58-
"releaseDate": "May 8, 2023"
58+
"releaseDate": "June 12, 2023"
5959
}

0 commit comments

Comments
 (0)