Skip to content

Commit 590e75e

Browse files
committed
8.3.0
1 parent 957fa87 commit 590e75e

File tree

10 files changed

+2264
-96
lines changed

10 files changed

+2264
-96
lines changed

.eslintrc.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ module.exports = {
132132
'prefer-destructuring': ['off'],
133133
'no-restricted-globals': ['off'],
134134
'vue/multi-word-component-names': 'off',
135+
'vue/no-deprecated-slot-attribute': 'off',
135136
},
136137
},
137138
{
@@ -143,6 +144,7 @@ module.exports = {
143144
'import/extensions': ['off'],
144145
'no-restricted-globals': ['off'],
145146
'vue/multi-word-component-names': 'off',
147+
'vue/no-deprecated-slot-attribute': 'off',
146148
},
147149
},
148150
// SVELTE KITCHEN_SINK

CHANGELOG.md

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

33
# Change Log
44

5+
# [8.3.0](https://github.com/framework7io/framework7/compare/v8.2.0...v8.3.0) (2023-08-18)
6+
7+
### Bug Fixes
8+
9+
- **popup:** fix wrong popup push position on top of tablet-full-screen push popup ([41def46](https://github.com/framework7io/framework7/commit/41def46c3d5c9aa54bbfe18bb9a18a9ccda8b0ff))
10+
- **popup:** prevent swiping popup when swiping over enabled sortable ([9673b0b](https://github.com/framework7io/framework7/commit/9673b0b079b04e9a3cc71520efbff39679ee8203))
11+
- **router:** fix props not passed to `openIn` components ([c609439](https://github.com/framework7io/framework7/commit/c609439a0500998baa18ce5e824aad50136b42bd)), closes [#4215](https://github.com/framework7io/framework7/issues/4215)
12+
- **sheet:** prevent swiping sheet when swiping over enabled sortable ([c92ad63](https://github.com/framework7io/framework7/commit/c92ad6313fd9acad0b4a971c4b91157c5fd6160b))
13+
14+
### Features
15+
16+
- **sheet:** new feature to configure opened breakpoints ([3ec8cc1](https://github.com/framework7io/framework7/commit/3ec8cc1d81547de37d6f3064e0f705f3d2b2eb5e))
17+
- **svelte:** types reworked for Svelte 4 ([#4216](https://github.com/framework7io/framework7/issues/4216)) ([31b94b0](https://github.com/framework7io/framework7/commit/31b94b00dec840e5a7095f99626bb3872fa485dc))
18+
- **swiper:** update swiper to latest 10.2.0 ([957fa87](https://github.com/framework7io/framework7/commit/957fa87367c98a2dc44484abda85beb990a9160a))
19+
- update to latest Swiper ([b9afba6](https://github.com/framework7io/framework7/commit/b9afba6abe765c9e88114c778a5cfefbbcba0e31))
20+
521
# [8.2.0](https://github.com/framework7io/framework7/compare/v8.1.0...v8.2.0) (2023-07-06)
622

723
### 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>

0 commit comments

Comments
 (0)