@xenknight/framework7-vue 0.0.8 → 0.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,6 +5,96 @@ import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
5
5
  declare const NavbarNew: DefineComponent<
6
6
  {
7
7
 
8
+ backLink: {
9
+ type: BooleanConstructor | StringConstructor;
10
+ },
11
+
12
+ backLinkUrl: {
13
+ type: StringConstructor;
14
+ },
15
+
16
+ backLinkForce: {
17
+ type: BooleanConstructor;
18
+ },
19
+
20
+ title: {
21
+ type: StringConstructor;
22
+ },
23
+
24
+ subtitle: {
25
+ type: StringConstructor;
26
+ },
27
+
28
+ hidden: {
29
+ type: BooleanConstructor;
30
+ },
31
+
32
+ innerClass: {
33
+ type: StringConstructor;
34
+ },
35
+
36
+ innerClassName: {
37
+ type: StringConstructor;
38
+ },
39
+
40
+ large: {
41
+ type: BooleanConstructor;
42
+ },
43
+
44
+ largeTransparent: {
45
+ type: BooleanConstructor;
46
+ },
47
+
48
+ transparent: {
49
+ type: BooleanConstructor;
50
+ },
51
+
52
+ titleLarge: {
53
+ type: StringConstructor;
54
+ },
55
+
56
+ backLinkShowText: {
57
+ type: BooleanConstructor;
58
+ default: undefined;
59
+ },
60
+
61
+ sliding: {
62
+ type: BooleanConstructor;
63
+ default: boolean;
64
+ },
65
+
66
+ outline: {
67
+ type: any;
68
+ default: boolean;
69
+ },
70
+
71
+ color: {
72
+ type: StringConstructor;
73
+ },
74
+
75
+ colorTheme: {
76
+ type: StringConstructor;
77
+ },
78
+
79
+ textColor: {
80
+ type: StringConstructor;
81
+ },
82
+
83
+ bgColor: {
84
+ type: StringConstructor;
85
+ },
86
+
87
+ borderColor: {
88
+ type: StringConstructor;
89
+ },
90
+
91
+ rippleColor: {
92
+ type: StringConstructor;
93
+ },
94
+
95
+ dark: {
96
+ type: BooleanConstructor;
97
+ }
8
98
  },
9
99
  () => JSX.Element,
10
100
  unknown,
@@ -83,6 +83,16 @@ declare const Page: DefineComponent<
83
83
  default: undefined;
84
84
  },
85
85
 
86
+ subnavbarNew: {
87
+ type: BooleanConstructor;
88
+ default: undefined;
89
+ },
90
+
91
+ withSubnavbarNew: {
92
+ type: BooleanConstructor;
93
+ default: undefined;
94
+ },
95
+
86
96
  withNavbarLarge: {
87
97
  type: BooleanConstructor;
88
98
  default: undefined;
@@ -15,6 +15,14 @@ export default {
15
15
  type: Boolean,
16
16
  default: undefined
17
17
  },
18
+ subnavbarNew: {
19
+ type: Boolean,
20
+ default: undefined
21
+ },
22
+ withSubnavbarNew: {
23
+ type: Boolean,
24
+ default: undefined
25
+ },
18
26
  withNavbarLarge: {
19
27
  type: Boolean,
20
28
  default: undefined
@@ -61,6 +69,7 @@ export default {
61
69
  slots
62
70
  } = _ref;
63
71
  let hasSubnavbar = false;
72
+ let hasSubnavbarNew = false;
64
73
  let hasNavbarLarge = false;
65
74
  let hasNavbarLargeCollapsed = false;
66
75
  let hasCardExpandableOpened = false;
@@ -78,10 +87,15 @@ export default {
78
87
  const onPageInit = page => {
79
88
  if (elRef.value !== page.el) return;
80
89
  if (typeof props.withSubnavbar === 'undefined' && typeof props.subnavbar === 'undefined') {
81
- if (page.$navbarEl && page.$navbarEl.length && page.$navbarEl.find('.subnavbar').length || page.$navbarNewEl && page.$navbarNewEl.length && page.$navbarNewEl.find('.subnavbar').length || page.$el.children('.navbar').find('.subnavbar').length || page.$el.children('.navbar-new').find('.subnavbar').length) {
90
+ if (page.$navbarEl && page.$navbarEl.length && page.$navbarEl.find('.subnavbar').length || page.$el.children('.navbar').find('.subnavbar').length) {
82
91
  hasSubnavbar = true;
83
92
  }
84
93
  }
94
+ if (typeof props.withSubnavbarNew === 'undefined' && typeof props.subnavbarNew === 'undefined') {
95
+ if (page.$navbarNewEl && page.$navbarNewEl.length && page.$navbarNewEl.find('.subnavbar-new').length || page.$el.children('.navbar-new').find('.subnavbar-new').length) {
96
+ hasSubnavbarNew = true;
97
+ }
98
+ }
85
99
  if (typeof props.withNavbarLarge === 'undefined' && typeof props.navbarLarge === 'undefined') {
86
100
  if (page.$navbarEl && page.$navbarEl.hasClass('navbar-large')) {
87
101
  hasNavbarLarge = true;
@@ -161,16 +175,16 @@ export default {
161
175
  hasNavbarLargeCollapsed = false;
162
176
  };
163
177
  const onNavbarNewCollapse = navbarEl => {
164
- if (!elRef.value || !navbarEl) return;
178
+ if (!elRef.value) return;
165
179
  const pageEl = navbarEl.closest('.page');
166
- if (pageEl === elRef.value) {
180
+ if (pageEl && pageEl === elRef.value) {
167
181
  hasNavbarLargeCollapsed = true;
168
182
  }
169
183
  };
170
184
  const onNavbarNewExpand = navbarEl => {
171
- if (!elRef.value || !navbarEl) return;
185
+ if (!elRef.value) return;
172
186
  const pageEl = navbarEl.closest('.page');
173
- if (pageEl === elRef.value) {
187
+ if (pageEl && pageEl === elRef.value) {
174
188
  hasNavbarLargeCollapsed = false;
175
189
  }
176
190
  };
@@ -260,6 +274,7 @@ export default {
260
274
  const classes = computed(() => classNames('page', routerPositionClass, {
261
275
  tabs: props.tabs,
262
276
  'page-with-subnavbar': props.subnavbar || props.withSubnavbar,
277
+ 'page-with-subnavbar-new': props.subnavbarNew || props.withSubnavbarNew,
263
278
  'page-with-navbar-large': props.navbarLarge || props.withNavbarLarge,
264
279
  'no-navbar': props.noNavbar,
265
280
  'no-toolbar': props.noToolbar,
@@ -272,7 +287,7 @@ export default {
272
287
  'page-with-card-opened': hasCardExpandableOpened === true,
273
288
  'login-screen-page': props.loginScreen
274
289
  }, colorClasses(props)));
275
- const fixedTags = 'navbar navbar-new toolbar tabbar subnavbar searchbar messagebar fab list-index panel'.split(' ').map(tagName => `f7-${tagName}`);
290
+ const fixedTags = 'navbar navbar-new toolbar toolbar-new tabbar subnavbar subnavbar-new searchbar searchbar-new messagebar fab list-index panel'.split(' ').map(tagName => `f7-${tagName}`);
276
291
  return () => {
277
292
  const fixedList = [];
278
293
  const staticList = [];
@@ -282,6 +297,7 @@ export default {
282
297
  default: slotsDefault
283
298
  } = slots;
284
299
  let hasSubnavbarComputed = false;
300
+ let hasSubnavbarNewComputed = false;
285
301
  let hasNavbarLargeComputed = false;
286
302
  let hasMessages = props.messagesContent;
287
303
  const slotsDefaultRendered = slotsDefault && slotsDefault();
@@ -295,6 +311,7 @@ export default {
295
311
  return;
296
312
  }
297
313
  if (tag === 'f7-subnavbar') hasSubnavbarComputed = true;
314
+ if (tag === 'f7-subnavbar-new') hasSubnavbarNewComputed = true;
298
315
  if (tag === 'f7-navbar') {
299
316
  if (vnode.props && (vnode.props.large || vnode.props.large === '')) hasNavbarLargeComputed = true;
300
317
  }
@@ -314,6 +331,9 @@ export default {
314
331
  if ((hasSubnavbarComputed || hasSubnavbar) && typeof props.subnavbar === 'undefined' && typeof props.withSubnavbar === 'undefined' && classesValue.indexOf('page-with-subnavbar') < 0) {
315
332
  classesValue += ' page-with-subnavbar';
316
333
  }
334
+ if ((hasSubnavbarNewComputed || hasSubnavbarNew) && typeof props.subnavbarNew === 'undefined' && typeof props.withSubnavbarNew === 'undefined' && classesValue.indexOf('page-with-subnavbar-new') < 0) {
335
+ classesValue += ' page-with-subnavbar-new';
336
+ }
317
337
  if ((hasNavbarLargeComputed || hasNavbarLarge) && typeof props.navbarLarge === 'undefined' && typeof props.withNavbarLarge === 'undefined' && classesValue.indexOf('page-with-navbar-large') < 0 && classesValue.indexOf('page-with-navbar-new-large') < 0) {
318
338
  classesValue += ' page-with-navbar-large';
319
339
  }
@@ -5,6 +5,168 @@ import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
5
5
  declare const SearchbarNew: DefineComponent<
6
6
  {
7
7
 
8
+ value: {
9
+ type: StringConstructor | NumberConstructor | ArrayConstructor;
10
+ },
11
+
12
+ expandable: {
13
+ type: BooleanConstructor;
14
+ },
15
+
16
+ inline: {
17
+ type: BooleanConstructor;
18
+ },
19
+
20
+ searchContainer: {
21
+ type: StringConstructor | ObjectConstructor;
22
+ },
23
+
24
+ backdropEl: {
25
+ type: StringConstructor | ObjectConstructor;
26
+ },
27
+
28
+ outline: {
29
+ type: any;
30
+ default: boolean;
31
+ },
32
+
33
+ form: {
34
+ type: BooleanConstructor;
35
+ default: boolean;
36
+ },
37
+
38
+ placeholder: {
39
+ type: StringConstructor;
40
+ default: string;
41
+ },
42
+
43
+ spellcheck: {
44
+ type: BooleanConstructor;
45
+ default: undefined;
46
+ },
47
+
48
+ disableButton: {
49
+ type: BooleanConstructor;
50
+ default: boolean;
51
+ },
52
+
53
+ disableButtonText: {
54
+ type: StringConstructor;
55
+ default: string;
56
+ },
57
+
58
+ clearButton: {
59
+ type: BooleanConstructor;
60
+ default: boolean;
61
+ },
62
+
63
+ inputEvents: {
64
+ type: StringConstructor;
65
+ default: string;
66
+ },
67
+
68
+ searchIn: {
69
+ type: StringConstructor;
70
+ default: string;
71
+ },
72
+
73
+ searchItem: {
74
+ type: StringConstructor;
75
+ default: string;
76
+ },
77
+
78
+ searchGroup: {
79
+ type: StringConstructor;
80
+ default: string;
81
+ },
82
+
83
+ searchGroupTitle: {
84
+ type: StringConstructor;
85
+ default: string;
86
+ },
87
+
88
+ foundEl: {
89
+ type: StringConstructor | ObjectConstructor;
90
+ default: string;
91
+ },
92
+
93
+ notFoundEl: {
94
+ type: StringConstructor | ObjectConstructor;
95
+ default: string;
96
+ },
97
+
98
+ backdrop: {
99
+ type: BooleanConstructor;
100
+ default: undefined;
101
+ },
102
+
103
+ hideOnEnableEl: {
104
+ type: StringConstructor | ObjectConstructor;
105
+ default: string;
106
+ },
107
+
108
+ hideOnSearchEl: {
109
+ type: StringConstructor | ObjectConstructor;
110
+ default: string;
111
+ },
112
+
113
+ ignore: {
114
+ type: StringConstructor;
115
+ default: string;
116
+ },
117
+
118
+ customSearch: {
119
+ type: BooleanConstructor;
120
+ default: boolean;
121
+ },
122
+
123
+ removeDiacritics: {
124
+ type: BooleanConstructor;
125
+ default: boolean;
126
+ },
127
+
128
+ hideGroupTitles: {
129
+ type: BooleanConstructor;
130
+ default: boolean;
131
+ },
132
+
133
+ hideGroups: {
134
+ type: BooleanConstructor;
135
+ default: boolean;
136
+ },
137
+
138
+ init: {
139
+ type: BooleanConstructor;
140
+ default: boolean;
141
+ },
142
+
143
+ color: {
144
+ type: StringConstructor;
145
+ },
146
+
147
+ colorTheme: {
148
+ type: StringConstructor;
149
+ },
150
+
151
+ textColor: {
152
+ type: StringConstructor;
153
+ },
154
+
155
+ bgColor: {
156
+ type: StringConstructor;
157
+ },
158
+
159
+ borderColor: {
160
+ type: StringConstructor;
161
+ },
162
+
163
+ rippleColor: {
164
+ type: StringConstructor;
165
+ },
166
+
167
+ dark: {
168
+ type: BooleanConstructor;
169
+ }
8
170
  },
9
171
  () => JSX.Element,
10
172
  unknown,
@@ -0,0 +1,19 @@
1
+
2
+ import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
3
+
4
+
5
+ declare const SubnavbarNew: DefineComponent<
6
+ {
7
+
8
+ },
9
+ () => JSX.Element,
10
+ unknown,
11
+ {},
12
+ {},
13
+ ComponentOptionsMixin,
14
+ ComponentOptionsMixin,
15
+
16
+ >;
17
+
18
+ export default SubnavbarNew;
19
+
@@ -0,0 +1,40 @@
1
+ import { toDisplayString as _toDisplayString, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, renderSlot as _renderSlot, normalizeClass as _normalizeClass } from "vue";
2
+ const _hoisted_1 = {
3
+ key: 0,
4
+ class: "subnavbar-new-inner"
5
+ };
6
+ const _hoisted_2 = {
7
+ key: 0,
8
+ class: "subnavbar-new-title"
9
+ };
10
+ function render(_ctx, _cache) {
11
+ return _openBlock(), _createElementBlock("div", {
12
+ class: _normalizeClass(_ctx.classes)
13
+ }, [_ctx.inner ? (_openBlock(), _createElementBlock("div", _hoisted_1, [_ctx.title ? (_openBlock(), _createElementBlock("div", _hoisted_2, _toDisplayString(_ctx.title), 1)) : _createCommentVNode("", true), _renderSlot(_ctx.$slots, "default")])) : _renderSlot(_ctx.$slots, "default", {
14
+ key: 1
15
+ })], 2);
16
+ }
17
+ import { computed } from 'vue';
18
+ import { classNames } from '../shared/utils.js';
19
+ import { colorClasses, colorProps } from '../shared/mixins.js';
20
+ export default {
21
+ name: 'f7-subnavbar-new',
22
+ render,
23
+ props: {
24
+ sliding: Boolean,
25
+ title: String,
26
+ inner: {
27
+ type: Boolean,
28
+ default: true
29
+ },
30
+ ...colorProps
31
+ },
32
+ setup(props) {
33
+ const classes = computed(() => classNames('subnavbar-new', {
34
+ sliding: props.sliding
35
+ }, colorClasses(props)));
36
+ return {
37
+ classes
38
+ };
39
+ }
40
+ };
@@ -5,6 +5,94 @@ import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
5
5
  declare const ToolbarNew: DefineComponent<
6
6
  {
7
7
 
8
+ tabbar: {
9
+ type: BooleanConstructor;
10
+ },
11
+
12
+ icons: {
13
+ type: BooleanConstructor;
14
+ },
15
+
16
+ scrollable: {
17
+ type: BooleanConstructor;
18
+ },
19
+
20
+ hidden: {
21
+ type: BooleanConstructor;
22
+ },
23
+
24
+ outline: {
25
+ type: any;
26
+ default: boolean;
27
+ },
28
+
29
+ position: {
30
+ type: StringConstructor;
31
+ default: undefined;
32
+ },
33
+
34
+ topMd: {
35
+ type: BooleanConstructor;
36
+ default: undefined;
37
+ },
38
+
39
+ topIos: {
40
+ type: BooleanConstructor;
41
+ default: undefined;
42
+ },
43
+
44
+ top: {
45
+ type: BooleanConstructor;
46
+ default: undefined;
47
+ },
48
+
49
+ bottomMd: {
50
+ type: BooleanConstructor;
51
+ default: undefined;
52
+ },
53
+
54
+ bottomIos: {
55
+ type: BooleanConstructor;
56
+ default: undefined;
57
+ },
58
+
59
+ bottom: {
60
+ type: BooleanConstructor;
61
+ default: undefined;
62
+ },
63
+
64
+ inner: {
65
+ type: BooleanConstructor;
66
+ default: boolean;
67
+ },
68
+
69
+ color: {
70
+ type: StringConstructor;
71
+ },
72
+
73
+ colorTheme: {
74
+ type: StringConstructor;
75
+ },
76
+
77
+ textColor: {
78
+ type: StringConstructor;
79
+ },
80
+
81
+ bgColor: {
82
+ type: StringConstructor;
83
+ },
84
+
85
+ borderColor: {
86
+ type: StringConstructor;
87
+ },
88
+
89
+ rippleColor: {
90
+ type: StringConstructor;
91
+ },
92
+
93
+ dark: {
94
+ type: BooleanConstructor;
95
+ }
8
96
  },
9
97
  () => JSX.Element,
10
98
  unknown,
@@ -80,6 +80,7 @@ import f7SkeletonBlock from './components/skeleton-block.js';
80
80
  import f7SkeletonImage from './components/skeleton-image.js';
81
81
  import f7SkeletonText from './components/skeleton-text.js';
82
82
  import f7Stepper from './components/stepper.js';
83
+ import f7SubnavbarNew from './components/subnavbar-new.js';
83
84
  import f7Subnavbar from './components/subnavbar.js';
84
85
  import f7SwipeoutActions from './components/swipeout-actions.js';
85
86
  import f7SwipeoutButton from './components/swipeout-button.js';
@@ -96,7 +97,7 @@ import f7UseIcon from './components/use-icon.js';
96
97
  import f7View from './components/view.js';
97
98
  import f7Views from './components/views.js';
98
99
 
99
- export { f7AccordionContent, f7AccordionItem, f7AccordionToggle, f7Accordion, f7ActionsButton, f7ActionsGroup, f7ActionsLabel, f7Actions, f7App, f7AreaChart, f7Badge, f7BlockFooter, f7BlockHeader, f7BlockTitle, f7Block, f7BreadcrumbsCollapsed, f7BreadcrumbsItem, f7BreadcrumbsSeparator, f7Breadcrumbs, f7Button, f7CardContent, f7CardFooter, f7CardHeader, f7Card, f7Checkbox, f7Chip, f7FabBackdrop, f7FabButton, f7FabButtons, f7Fab, f7Gauge, f7Icon, f7Input, f7Link, f7ListButton, f7ListGroup, f7ListIndex, f7ListInput, f7ListItem, f7List, f7LoginScreenTitle, f7LoginScreen, f7Message, f7MessagebarAttachment, f7MessagebarAttachments, f7MessagebarSheetImage, f7MessagebarSheetItem, f7MessagebarSheet, f7Messagebar, f7MessagesTitle, f7Messages, f7NavLeft, f7NavRight, f7NavTitleLarge, f7NavTitle, f7NavbarNew, f7Navbar, f7PageContent, f7Page, f7Panel, f7PhotoBrowser, f7PieChart, f7Popover, f7Popup, f7Preloader, f7Progressbar, f7Radio, f7Range, f7RoutableModals, f7SearchbarNew, f7Searchbar, f7Segmented, f7Sheet, f7SkeletonAvatar, f7SkeletonBlock, f7SkeletonImage, f7SkeletonText, f7Stepper, f7Subnavbar, f7SwipeoutActions, f7SwipeoutButton, f7Tab, f7Tabs, f7TextEditor, f7Toggle, f7ToolbarNew, f7ToolbarPaneNew, f7Toolbar, f7TreeviewItem, f7Treeview, f7UseIcon, f7View, f7Views }
100
+ export { f7AccordionContent, f7AccordionItem, f7AccordionToggle, f7Accordion, f7ActionsButton, f7ActionsGroup, f7ActionsLabel, f7Actions, f7App, f7AreaChart, f7Badge, f7BlockFooter, f7BlockHeader, f7BlockTitle, f7Block, f7BreadcrumbsCollapsed, f7BreadcrumbsItem, f7BreadcrumbsSeparator, f7Breadcrumbs, f7Button, f7CardContent, f7CardFooter, f7CardHeader, f7Card, f7Checkbox, f7Chip, f7FabBackdrop, f7FabButton, f7FabButtons, f7Fab, f7Gauge, f7Icon, f7Input, f7Link, f7ListButton, f7ListGroup, f7ListIndex, f7ListInput, f7ListItem, f7List, f7LoginScreenTitle, f7LoginScreen, f7Message, f7MessagebarAttachment, f7MessagebarAttachments, f7MessagebarSheetImage, f7MessagebarSheetItem, f7MessagebarSheet, f7Messagebar, f7MessagesTitle, f7Messages, f7NavLeft, f7NavRight, f7NavTitleLarge, f7NavTitle, f7NavbarNew, f7Navbar, f7PageContent, f7Page, f7Panel, f7PhotoBrowser, f7PieChart, f7Popover, f7Popup, f7Preloader, f7Progressbar, f7Radio, f7Range, f7RoutableModals, f7SearchbarNew, f7Searchbar, f7Segmented, f7Sheet, f7SkeletonAvatar, f7SkeletonBlock, f7SkeletonImage, f7SkeletonText, f7Stepper, f7SubnavbarNew, f7Subnavbar, f7SwipeoutActions, f7SwipeoutButton, f7Tab, f7Tabs, f7TextEditor, f7Toggle, f7ToolbarNew, f7ToolbarPaneNew, f7Toolbar, f7TreeviewItem, f7Treeview, f7UseIcon, f7View, f7Views }
100
101
  export { f7, f7ready, theme, useStore, setTheme };
101
102
  export default Framework7Vue;
102
103
 
@@ -179,6 +180,7 @@ function registerComponents(app) {
179
180
  app.component('f7-skeleton-image', f7SkeletonImage);
180
181
  app.component('f7-skeleton-text', f7SkeletonText);
181
182
  app.component('f7-stepper', f7Stepper);
183
+ app.component('f7-subnavbar-new', f7SubnavbarNew);
182
184
  app.component('f7-subnavbar', f7Subnavbar);
183
185
  app.component('f7-swipeout-actions', f7SwipeoutActions);
184
186
  app.component('f7-swipeout-button', f7SwipeoutButton);
@@ -79,6 +79,7 @@ import f7SkeletonBlock from './components/skeleton-block.js';
79
79
  import f7SkeletonImage from './components/skeleton-image.js';
80
80
  import f7SkeletonText from './components/skeleton-text.js';
81
81
  import f7Stepper from './components/stepper.js';
82
+ import f7SubnavbarNew from './components/subnavbar-new.js';
82
83
  import f7Subnavbar from './components/subnavbar.js';
83
84
  import f7SwipeoutActions from './components/swipeout-actions.js';
84
85
  import f7SwipeoutButton from './components/swipeout-button.js';
@@ -120,6 +121,6 @@ declare const useStore: useStore;
120
121
 
121
122
  declare const setTheme: (theme: string) => void;
122
123
 
123
- export { f7AccordionContent, f7AccordionItem, f7AccordionToggle, f7Accordion, f7ActionsButton, f7ActionsGroup, f7ActionsLabel, f7Actions, f7App, f7AreaChart, f7Badge, f7BlockFooter, f7BlockHeader, f7BlockTitle, f7Block, f7BreadcrumbsCollapsed, f7BreadcrumbsItem, f7BreadcrumbsSeparator, f7Breadcrumbs, f7Button, f7CardContent, f7CardFooter, f7CardHeader, f7Card, f7Checkbox, f7Chip, f7FabBackdrop, f7FabButton, f7FabButtons, f7Fab, f7Gauge, f7Icon, f7Input, f7Link, f7ListButton, f7ListGroup, f7ListIndex, f7ListInput, f7ListItem, f7List, f7LoginScreenTitle, f7LoginScreen, f7Message, f7MessagebarAttachment, f7MessagebarAttachments, f7MessagebarSheetImage, f7MessagebarSheetItem, f7MessagebarSheet, f7Messagebar, f7MessagesTitle, f7Messages, f7NavLeft, f7NavRight, f7NavTitleLarge, f7NavTitle, f7NavbarNew, f7Navbar, f7PageContent, f7Page, f7Panel, f7PhotoBrowser, f7PieChart, f7Popover, f7Popup, f7Preloader, f7Progressbar, f7Radio, f7Range, f7RoutableModals, f7SearchbarNew, f7Searchbar, f7Segmented, f7Sheet, f7SkeletonAvatar, f7SkeletonBlock, f7SkeletonImage, f7SkeletonText, f7Stepper, f7Subnavbar, f7SwipeoutActions, f7SwipeoutButton, f7Tab, f7Tabs, f7TextEditor, f7Toggle, f7ToolbarNew, f7ToolbarPaneNew, f7Toolbar, f7TreeviewItem, f7Treeview, f7UseIcon, f7View, f7Views }
124
+ export { f7AccordionContent, f7AccordionItem, f7AccordionToggle, f7Accordion, f7ActionsButton, f7ActionsGroup, f7ActionsLabel, f7Actions, f7App, f7AreaChart, f7Badge, f7BlockFooter, f7BlockHeader, f7BlockTitle, f7Block, f7BreadcrumbsCollapsed, f7BreadcrumbsItem, f7BreadcrumbsSeparator, f7Breadcrumbs, f7Button, f7CardContent, f7CardFooter, f7CardHeader, f7Card, f7Checkbox, f7Chip, f7FabBackdrop, f7FabButton, f7FabButtons, f7Fab, f7Gauge, f7Icon, f7Input, f7Link, f7ListButton, f7ListGroup, f7ListIndex, f7ListInput, f7ListItem, f7List, f7LoginScreenTitle, f7LoginScreen, f7Message, f7MessagebarAttachment, f7MessagebarAttachments, f7MessagebarSheetImage, f7MessagebarSheetItem, f7MessagebarSheet, f7Messagebar, f7MessagesTitle, f7Messages, f7NavLeft, f7NavRight, f7NavTitleLarge, f7NavTitle, f7NavbarNew, f7Navbar, f7PageContent, f7Page, f7Panel, f7PhotoBrowser, f7PieChart, f7Popover, f7Popup, f7Preloader, f7Progressbar, f7Radio, f7Range, f7RoutableModals, f7SearchbarNew, f7Searchbar, f7Segmented, f7Sheet, f7SkeletonAvatar, f7SkeletonBlock, f7SkeletonImage, f7SkeletonText, f7Stepper, f7SubnavbarNew, f7Subnavbar, f7SwipeoutActions, f7SwipeoutButton, f7Tab, f7Tabs, f7TextEditor, f7Toggle, f7ToolbarNew, f7ToolbarPaneNew, f7Toolbar, f7TreeviewItem, f7Treeview, f7UseIcon, f7View, f7Views }
124
125
  export { f7, f7ready, theme, useStore, setTheme };
125
126
  export default Framework7Vue;
package/framework7-vue.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Framework7 Vue 0.0.7
2
+ * Framework7 Vue 0.0.9
3
3
  * Build full featured iOS & Android apps using Framework7 & Vue
4
4
  * https://framework7.io/vue/
5
5
  *
@@ -7,7 +7,7 @@
7
7
  *
8
8
  * Released under the MIT License
9
9
  *
10
- * Released on: January 1, 2026
10
+ * Released on: January 4, 2026
11
11
  */
12
12
  import Framework7Vue from './shared/plugin.js';
13
13
  import { f7, f7ready, theme, setTheme } from './shared/f7.js';
@@ -91,6 +91,7 @@ import f7SkeletonBlock from './components/skeleton-block.js';
91
91
  import f7SkeletonImage from './components/skeleton-image.js';
92
92
  import f7SkeletonText from './components/skeleton-text.js';
93
93
  import f7Stepper from './components/stepper.js';
94
+ import f7SubnavbarNew from './components/subnavbar-new.js';
94
95
  import f7Subnavbar from './components/subnavbar.js';
95
96
  import f7SwipeoutActions from './components/swipeout-actions.js';
96
97
  import f7SwipeoutButton from './components/swipeout-button.js';
@@ -107,6 +108,6 @@ import f7UseIcon from './components/use-icon.js';
107
108
  import f7View from './components/view.js';
108
109
  import f7Views from './components/views.js';
109
110
 
110
- export { f7AccordionContent, f7AccordionItem, f7AccordionToggle, f7Accordion, f7ActionsButton, f7ActionsGroup, f7ActionsLabel, f7Actions, f7App, f7AreaChart, f7Badge, f7BlockFooter, f7BlockHeader, f7BlockTitle, f7Block, f7BreadcrumbsCollapsed, f7BreadcrumbsItem, f7BreadcrumbsSeparator, f7Breadcrumbs, f7Button, f7CardContent, f7CardFooter, f7CardHeader, f7Card, f7Checkbox, f7Chip, f7FabBackdrop, f7FabButton, f7FabButtons, f7Fab, f7Gauge, f7Icon, f7Input, f7Link, f7ListButton, f7ListGroup, f7ListIndex, f7ListInput, f7ListItem, f7List, f7LoginScreenTitle, f7LoginScreen, f7Message, f7MessagebarAttachment, f7MessagebarAttachments, f7MessagebarSheetImage, f7MessagebarSheetItem, f7MessagebarSheet, f7Messagebar, f7MessagesTitle, f7Messages, f7NavLeft, f7NavRight, f7NavTitleLarge, f7NavTitle, f7NavbarNew, f7Navbar, f7PageContent, f7Page, f7Panel, f7PhotoBrowser, f7PieChart, f7Popover, f7Popup, f7Preloader, f7Progressbar, f7Radio, f7Range, f7RoutableModals, f7SearchbarNew, f7Searchbar, f7Segmented, f7Sheet, f7SkeletonAvatar, f7SkeletonBlock, f7SkeletonImage, f7SkeletonText, f7Stepper, f7Subnavbar, f7SwipeoutActions, f7SwipeoutButton, f7Tab, f7Tabs, f7TextEditor, f7Toggle, f7ToolbarNew, f7ToolbarPaneNew, f7Toolbar, f7TreeviewItem, f7Treeview, f7UseIcon, f7View, f7Views }
111
+ export { f7AccordionContent, f7AccordionItem, f7AccordionToggle, f7Accordion, f7ActionsButton, f7ActionsGroup, f7ActionsLabel, f7Actions, f7App, f7AreaChart, f7Badge, f7BlockFooter, f7BlockHeader, f7BlockTitle, f7Block, f7BreadcrumbsCollapsed, f7BreadcrumbsItem, f7BreadcrumbsSeparator, f7Breadcrumbs, f7Button, f7CardContent, f7CardFooter, f7CardHeader, f7Card, f7Checkbox, f7Chip, f7FabBackdrop, f7FabButton, f7FabButtons, f7Fab, f7Gauge, f7Icon, f7Input, f7Link, f7ListButton, f7ListGroup, f7ListIndex, f7ListInput, f7ListItem, f7List, f7LoginScreenTitle, f7LoginScreen, f7Message, f7MessagebarAttachment, f7MessagebarAttachments, f7MessagebarSheetImage, f7MessagebarSheetItem, f7MessagebarSheet, f7Messagebar, f7MessagesTitle, f7Messages, f7NavLeft, f7NavRight, f7NavTitleLarge, f7NavTitle, f7NavbarNew, f7Navbar, f7PageContent, f7Page, f7Panel, f7PhotoBrowser, f7PieChart, f7Popover, f7Popup, f7Preloader, f7Progressbar, f7Radio, f7Range, f7RoutableModals, f7SearchbarNew, f7Searchbar, f7Segmented, f7Sheet, f7SkeletonAvatar, f7SkeletonBlock, f7SkeletonImage, f7SkeletonText, f7Stepper, f7SubnavbarNew, f7Subnavbar, f7SwipeoutActions, f7SwipeoutButton, f7Tab, f7Tabs, f7TextEditor, f7Toggle, f7ToolbarNew, f7ToolbarPaneNew, f7Toolbar, f7TreeviewItem, f7Treeview, f7UseIcon, f7View, f7Views }
111
112
  export { f7, f7ready, theme, useStore, setTheme };
112
113
  export default Framework7Vue;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xenknight/framework7-vue",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "description": "Build full featured iOS & Android apps using Framework7 & Vue",
5
5
  "type": "module",
6
6
  "exports": {