Skip to content

Commit 98285ca

Browse files
committed
feat(core): remove Appbar module/component
1 parent 1c3639c commit 98285ca

File tree

31 files changed

+7
-769
lines changed

31 files changed

+7
-769
lines changed

kitchen-sink/core/js/routes.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,6 @@ var routes = [
7272
path: '/action-sheet/',
7373
componentUrl: './pages/action-sheet.html',
7474
},
75-
{
76-
path: '/appbar/',
77-
componentUrl: './pages/appbar.html',
78-
},
7975
{
8076
path: '/area-chart/',
8177
componentUrl: './pages/area-chart.html',

kitchen-sink/core/pages/appbar.html

Lines changed: 0 additions & 86 deletions
This file was deleted.

kitchen-sink/core/pages/color-themes.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@
167167
--f7-sheet-border-color: transparent;
168168
--f7-tabbar-link-active-border-color: #fff;
169169
}
170-
.appbar,
171170
.navbar,
172171
.toolbar,
173172
.subnavbar,

kitchen-sink/core/pages/home.html

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,6 @@
6464
</div>
6565
</a>
6666
</li>
67-
<li>
68-
<a class="item-content item-link" href="/appbar/">
69-
<div class="item-media"><i class="icon icon-f7"></i></div>
70-
<div class="item-inner">
71-
<div class="item-title">Appbar</div>
72-
</div>
73-
</a>
74-
</li>
7567
<li>
7668
<a class="item-content item-link" href="/area-chart/">
7769
<div class="item-media"><i class="icon icon-f7"></i></div>

kitchen-sink/react/src/pages/appbar.jsx

Lines changed: 0 additions & 75 deletions
This file was deleted.

kitchen-sink/react/src/pages/color-themes.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ export default () => {
7878
--f7-sheet-border-color: transparent;
7979
--f7-tabbar-link-active-border-color: #fff;
8080
}
81-
.appbar,
8281
.navbar,
8382
.toolbar,
8483
.subnavbar,

kitchen-sink/react/src/pages/home.jsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import {
1212
Link,
1313
Searchbar,
1414
Icon,
15-
theme,
1615
} from 'framework7-react';
1716

1817
export default () => {
@@ -53,9 +52,6 @@ export default () => {
5352
<ListItem reloadDetail link="/action-sheet/" title="Action Sheet">
5453
<Icon slot="media" icon="icon-f7" />
5554
</ListItem>
56-
<ListItem reloadDetail link="/appbar/" title="Appbar">
57-
<Icon slot="media" icon="icon-f7" />
58-
</ListItem>
5955
<ListItem reloadDetail link="/area-chart/" title="Area Chart">
6056
<Icon slot="media" icon="icon-f7" />
6157
</ListItem>

kitchen-sink/react/src/routes.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import PanelRight from './pages/panel-right.jsx';
44
import About from './pages/about.jsx';
55
import Accordion from './pages/accordion.jsx';
66
import ActionSheet from './pages/action-sheet.jsx';
7-
import Appbar from './pages/appbar.jsx';
87
import AreaChart from './pages/area-chart.jsx';
98
import Autocomplete from './pages/autocomplete.jsx';
109
import Badge from './pages/badge.jsx';
@@ -198,10 +197,6 @@ export default [
198197
path: '/action-sheet/',
199198
component: ActionSheet,
200199
},
201-
{
202-
path: '/appbar/',
203-
component: Appbar,
204-
},
205200
{
206201
path: '/area-chart/',
207202
component: AreaChart,

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

Lines changed: 0 additions & 69 deletions
This file was deleted.

kitchen-sink/svelte/src/pages/color-themes.svelte

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@
7878
--f7-sheet-border-color: transparent;
7979
--f7-tabbar-link-active-border-color: #fff;
8080
}
81-
.appbar,
8281
.navbar,
8382
.toolbar,
8483
.subnavbar,

0 commit comments

Comments
 (0)