Skip to content

Commit

Permalink
8.0.0-beta.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed Mar 14, 2023
1 parent 4e4ccad commit 7d5843a
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 22 deletions.
4 changes: 2 additions & 2 deletions kitchen-sink/core/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<meta name="theme-color" content="#fff">
<meta http-equiv="Content-Security-Policy" content="default-src * 'self' 'unsafe-inline' 'unsafe-eval' data:">
<title>Framework7</title>
<link rel="stylesheet" href="../../build/core/framework7-bundle.css">
<link rel="stylesheet" href="../../packages/core/framework7-bundle.min.css">
<link rel="stylesheet" href="css/app.css">
<link rel="apple-touch-icon" href="img/f7-icon-square.png">
<link rel="icon" href="img/f7-icon.png">
Expand Down Expand Up @@ -104,7 +104,7 @@
</div>
<div class="view view-main view-init safe-areas" data-master-detail-breakpoint="768" data-url="/"></div>
</div>
<script src="../../build/core/framework7-bundle.js"></script>
<script src="../../packages/core/framework7-bundle.min.js"></script>
<script src="js/routes.js"></script>
<script src="js/store.js"></script>
<script src="js/app.js"></script>
Expand Down
2 changes: 0 additions & 2 deletions kitchen-sink/react/src/pages/accordion.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ import {
List,
ListItem,
AccordionContent,
AccordionItem,
AccordionToggle,
} from 'framework7-react';

export default () => (
Expand Down
2 changes: 0 additions & 2 deletions kitchen-sink/svelte/src/pages/accordion.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
List,
ListItem,
AccordionContent,
AccordionItem,
AccordionToggle,
} from 'framework7-svelte';
</script>

Expand Down
4 changes: 0 additions & 4 deletions kitchen-sink/vue/src/pages/accordion.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,6 @@ import {
f7Page,
f7BlockTitle,
f7Block,
f7AccordionItem,
f7AccordionToggle,
f7AccordionContent,
f7List,
f7ListItem,
Expand All @@ -102,8 +100,6 @@ export default {
f7Page,
f7BlockTitle,
f7Block,
f7AccordionItem,
f7AccordionToggle,
f7AccordionContent,
f7List,
f7ListItem,
Expand Down
4 changes: 2 additions & 2 deletions kitchen-sink/vue/src/pages/store.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<f7-page>
<f7-navbar title="Store" back-link="Back" />
<f7-block strong outlineIos insetMd>
<f7-block strong outline-ios inset-md>
<p>
Framework7 comes with a built-in lightweight application state management library - Store.
It serves as a centralized Store for all the components in an application.
Expand All @@ -11,7 +11,7 @@
<f7-button v-if="!loading" fill round @click="load">Load Users</f7-button>
<f7-preloader v-else />
</f7-block>
<f7-list v-if="users" strong outlineIos dividersIos insetMd>
<f7-list v-if="users" strong outline-ios dividers-ios inset-md>
<f7-list-item v-for="user in users" :key="user" :title="user" />
</f7-list>
</f7-page>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,4 @@
"vite": "^3.1.7",
"vue": "^3.2.40"
}
}
}
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "framework7",
"version": "8.0.0-beta.3",
"version": "8.0.0-beta.4",
"description": "Full featured mobile HTML framework for building iOS & Android apps",
"type": "module",
"exports": {
Expand Down Expand Up @@ -436,5 +436,5 @@
"ssr-window": "^4.0.2",
"swiper": "^9.0.3"
},
"releaseDate": "March 9, 2023"
"releaseDate": "March 14, 2023"
}
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "framework7-react",
"version": "8.0.0-beta.3",
"version": "8.0.0-beta.4",
"description": "Build full featured iOS & Android apps using Framework7 & React",
"type": "module",
"exports": {
Expand Down Expand Up @@ -47,5 +47,5 @@
"type": "patreon",
"url": "https://www.patreon.com/framework7"
},
"releaseDate": "March 9, 2023"
"releaseDate": "March 14, 2023"
}
4 changes: 2 additions & 2 deletions packages/svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "framework7-svelte",
"version": "8.0.0-beta.3",
"version": "8.0.0-beta.4",
"description": "Build full featured iOS & Android apps using Framework7 & Svelte",
"type": "module",
"svelte": "./framework7-svelte.js",
Expand Down Expand Up @@ -46,5 +46,5 @@
"type": "patreon",
"url": "https://www.patreon.com/framework7"
},
"releaseDate": "March 9, 2023"
"releaseDate": "March 14, 2023"
}
2 changes: 1 addition & 1 deletion packages/vue/framework7-vue-web-types.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "http://json-schema.org/draft-04/schema#",
"framework": "vue",
"name": "framework7-vue",
"version": "8.0.0-beta.3",
"version": "8.0.0-beta.4",
"contributions": {
"html": {
"types-syntax": "typescript",
Expand Down
4 changes: 2 additions & 2 deletions packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "framework7-vue",
"version": "8.0.0-beta.3",
"version": "8.0.0-beta.4",
"description": "Build full featured iOS & Android apps using Framework7 & Vue",
"type": "module",
"exports": {
Expand Down Expand Up @@ -55,5 +55,5 @@
"type": "patreon",
"url": "https://www.patreon.com/framework7"
},
"releaseDate": "March 9, 2023"
"releaseDate": "March 14, 2023"
}

0 comments on commit 7d5843a

Please sign in to comment.