@xenknight/framework7-vue 0.0.8 → 0.0.9

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;
@@ -2,6 +2,7 @@ import { computed, ref, onMounted, onBeforeUnmount, h } from 'vue';
2
2
  import { classNames } from '../shared/utils.js';
3
3
  import { colorClasses, colorProps } from '../shared/mixins.js';
4
4
  import { f7ready, f7 } from '../shared/f7.js';
5
+ import $ from '../../core/shared/dom7.js';
5
6
  import f7PageContent from './page-content.js';
6
7
  export default {
7
8
  name: 'f7-page',
@@ -15,6 +16,14 @@ export default {
15
16
  type: Boolean,
16
17
  default: undefined
17
18
  },
19
+ subnavbarNew: {
20
+ type: Boolean,
21
+ default: undefined
22
+ },
23
+ withSubnavbarNew: {
24
+ type: Boolean,
25
+ default: undefined
26
+ },
18
27
  withNavbarLarge: {
19
28
  type: Boolean,
20
29
  default: undefined
@@ -61,6 +70,7 @@ export default {
61
70
  slots
62
71
  } = _ref;
63
72
  let hasSubnavbar = false;
73
+ let hasSubnavbarNew = false;
64
74
  let hasNavbarLarge = false;
65
75
  let hasNavbarLargeCollapsed = false;
66
76
  let hasCardExpandableOpened = false;
@@ -78,10 +88,15 @@ export default {
78
88
  const onPageInit = page => {
79
89
  if (elRef.value !== page.el) return;
80
90
  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) {
91
+ if (page.$navbarEl && page.$navbarEl.length && page.$navbarEl.find('.subnavbar').length || page.$el.children('.navbar').find('.subnavbar').length) {
82
92
  hasSubnavbar = true;
83
93
  }
84
94
  }
95
+ if (typeof props.withSubnavbarNew === 'undefined' && typeof props.subnavbarNew === 'undefined') {
96
+ if (page.$navbarNewEl && page.$navbarNewEl.length && page.$navbarNewEl.find('.subnavbar-new').length || page.$el.children('.navbar-new').find('.subnavbar-new').length) {
97
+ hasSubnavbarNew = true;
98
+ }
99
+ }
85
100
  if (typeof props.withNavbarLarge === 'undefined' && typeof props.navbarLarge === 'undefined') {
86
101
  if (page.$navbarEl && page.$navbarEl.hasClass('navbar-large')) {
87
102
  hasNavbarLarge = true;
@@ -161,16 +176,18 @@ export default {
161
176
  hasNavbarLargeCollapsed = false;
162
177
  };
163
178
  const onNavbarNewCollapse = navbarEl => {
164
- if (!elRef.value || !navbarEl) return;
165
- const pageEl = navbarEl.closest('.page');
166
- if (pageEl === elRef.value) {
179
+ if (!elRef.value) return;
180
+ const $navbarEl = $(navbarEl);
181
+ const $pageEl = $navbarEl.parents('.page');
182
+ if ($pageEl.length && $pageEl[0] === elRef.value) {
167
183
  hasNavbarLargeCollapsed = true;
168
184
  }
169
185
  };
170
186
  const onNavbarNewExpand = navbarEl => {
171
- if (!elRef.value || !navbarEl) return;
172
- const pageEl = navbarEl.closest('.page');
173
- if (pageEl === elRef.value) {
187
+ if (!elRef.value) return;
188
+ const $navbarEl = $(navbarEl);
189
+ const $pageEl = $navbarEl.parents('.page');
190
+ if ($pageEl.length && $pageEl[0] === elRef.value) {
174
191
  hasNavbarLargeCollapsed = false;
175
192
  }
176
193
  };
@@ -260,6 +277,7 @@ export default {
260
277
  const classes = computed(() => classNames('page', routerPositionClass, {
261
278
  tabs: props.tabs,
262
279
  'page-with-subnavbar': props.subnavbar || props.withSubnavbar,
280
+ 'page-with-subnavbar-new': props.subnavbarNew || props.withSubnavbarNew,
263
281
  'page-with-navbar-large': props.navbarLarge || props.withNavbarLarge,
264
282
  'no-navbar': props.noNavbar,
265
283
  'no-toolbar': props.noToolbar,
@@ -272,7 +290,7 @@ export default {
272
290
  'page-with-card-opened': hasCardExpandableOpened === true,
273
291
  'login-screen-page': props.loginScreen
274
292
  }, colorClasses(props)));
275
- const fixedTags = 'navbar navbar-new toolbar tabbar subnavbar searchbar messagebar fab list-index panel'.split(' ').map(tagName => `f7-${tagName}`);
293
+ 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
294
  return () => {
277
295
  const fixedList = [];
278
296
  const staticList = [];
@@ -282,6 +300,7 @@ export default {
282
300
  default: slotsDefault
283
301
  } = slots;
284
302
  let hasSubnavbarComputed = false;
303
+ let hasSubnavbarNewComputed = false;
285
304
  let hasNavbarLargeComputed = false;
286
305
  let hasMessages = props.messagesContent;
287
306
  const slotsDefaultRendered = slotsDefault && slotsDefault();
@@ -295,6 +314,7 @@ export default {
295
314
  return;
296
315
  }
297
316
  if (tag === 'f7-subnavbar') hasSubnavbarComputed = true;
317
+ if (tag === 'f7-subnavbar-new') hasSubnavbarNewComputed = true;
298
318
  if (tag === 'f7-navbar') {
299
319
  if (vnode.props && (vnode.props.large || vnode.props.large === '')) hasNavbarLargeComputed = true;
300
320
  }
@@ -314,6 +334,9 @@ export default {
314
334
  if ((hasSubnavbarComputed || hasSubnavbar) && typeof props.subnavbar === 'undefined' && typeof props.withSubnavbar === 'undefined' && classesValue.indexOf('page-with-subnavbar') < 0) {
315
335
  classesValue += ' page-with-subnavbar';
316
336
  }
337
+ if ((hasSubnavbarNewComputed || hasSubnavbarNew) && typeof props.subnavbarNew === 'undefined' && typeof props.withSubnavbarNew === 'undefined' && classesValue.indexOf('page-with-subnavbar-new') < 0) {
338
+ classesValue += ' page-with-subnavbar-new';
339
+ }
317
340
  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
341
  classesValue += ' page-with-navbar-large';
319
342
  }
@@ -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.6
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.9",
4
4
  "description": "Build full featured iOS & Android apps using Framework7 & Vue",
5
5
  "type": "module",
6
6
  "exports": {