@xenknight/framework7 0.0.6 → 0.0.8

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.
Files changed (53) hide show
  1. package/components/app/app.less +1 -1
  2. package/components/icon/icon-ios.less +9 -0
  3. package/components/icon/icon-md.less +9 -0
  4. package/components/icon/icon.less +2 -1
  5. package/components/list/list-vars.less +1 -1
  6. package/components/messagebar/messagebar-rtl.css +1 -1
  7. package/components/messagebar/messagebar-vars.less +1 -1
  8. package/components/messagebar/messagebar.css +1 -1
  9. package/components/messages/messages-rtl.css +1 -1
  10. package/components/messages/messages-vars.less +7 -7
  11. package/components/messages/messages.css +1 -1
  12. package/components/navbar-new/navbar-ios.less +135 -0
  13. package/components/navbar-new/navbar-md.less +105 -0
  14. package/components/navbar-new/navbar-vars.less +78 -0
  15. package/components/navbar-new/navbar.d.ts +77 -0
  16. package/components/navbar-new/navbar.js +568 -0
  17. package/components/navbar-new/navbar.less +268 -0
  18. package/components/searchbar-new/remove-diacritics.js +271 -0
  19. package/components/searchbar-new/searchbar-ios.less +131 -0
  20. package/components/searchbar-new/searchbar-md.less +153 -0
  21. package/components/searchbar-new/searchbar-new-class.js +592 -0
  22. package/components/searchbar-new/searchbar-vars.less +75 -0
  23. package/components/searchbar-new/searchbar.js +122 -0
  24. package/components/searchbar-new/searchbar.less +331 -0
  25. package/components/swipeout/swipeout.js +8 -9
  26. package/components/tabs/tabs.js +5 -0
  27. package/components/toolbar-new/tabbar-highlight.js +134 -0
  28. package/components/toolbar-new/toolbar-ios.less +193 -0
  29. package/components/toolbar-new/toolbar-md.less +152 -0
  30. package/components/toolbar-new/toolbar-vars.less +77 -0
  31. package/components/toolbar-new/toolbar.js +223 -0
  32. package/components/toolbar-new/toolbar.less +261 -0
  33. package/framework7-bundle-rtl.css +2198 -387
  34. package/framework7-bundle-rtl.min.css +12 -6
  35. package/framework7-bundle.css +2194 -383
  36. package/framework7-bundle.esm.js +11 -4
  37. package/framework7-bundle.js +2368 -467
  38. package/framework7-bundle.js.map +1 -1
  39. package/framework7-bundle.less +6 -3
  40. package/framework7-bundle.min.css +12 -6
  41. package/framework7-bundle.min.js +4 -4
  42. package/framework7-bundle.min.js.map +1 -1
  43. package/framework7-lite-bundle.esm.js +11 -4
  44. package/framework7-lite.esm.js +11 -4
  45. package/framework7-lite.js +8 -1
  46. package/framework7-rtl.css +2191 -380
  47. package/framework7-rtl.min.css +11 -5
  48. package/framework7.css +2189 -378
  49. package/framework7.esm.js +11 -4
  50. package/framework7.js +8 -1
  51. package/framework7.less +6 -3
  52. package/framework7.min.css +11 -5
  53. package/package.json +1 -1
@@ -1,13 +1,13 @@
1
1
  /**
2
- * Framework7 0.0.5
2
+ * Framework7 0.0.7
3
3
  * Full featured mobile HTML framework for building iOS & Android apps
4
4
  * https://framework7.io/
5
5
  *
6
- * Copyright 2014-2025 Vladimir Kharlampidi
6
+ * Copyright 2014-2026 Vladimir Kharlampidi
7
7
  *
8
8
  * Released under the MIT License
9
9
  *
10
- * Released on: December 19, 2025
10
+ * Released on: January 1, 2026
11
11
  */
12
12
 
13
13
  import $ from './shared/dom7.js';
@@ -32,6 +32,13 @@ import Toolbar from './components/toolbar/toolbar.js';
32
32
  import Subnavbar from './components/subnavbar/subnavbar.js';
33
33
  import TouchRipple from './components/touch-ripple/touch-ripple.js';
34
34
  import Modal from './components/modal/modal.js';
35
+
36
+ // New Navbar
37
+ import NavbarNew from './components/navbar-new/navbar.js';
38
+ // New Searchbar
39
+ import SearchbarNew from './components/searchbar-new/searchbar.js';
40
+ // New Toolbar
41
+ import ToolbarNew from './components/toolbar-new/toolbar.js';
35
42
  import Dialog from './components/dialog/dialog.js';
36
43
  import Popup from './components/popup/popup.js';
37
44
  import LoginScreen from './components/login-screen/login-screen.js';
@@ -81,6 +88,6 @@ import Treeview from './components/treeview/treeview.js';
81
88
  import TextEditor from './components/text-editor/text-editor.js';
82
89
  import Breadcrumbs from './components/breadcrumbs/breadcrumbs.js';
83
90
  import Typography from './components/typography/typography.js';
84
- Framework7.use([DeviceModule, SupportModule, UtilsModule, ResizeModule, TouchModule, ClicksModule, RouterModule, HistoryModule, ServiceWorkerModule, StoreModule, Statusbar, View, Navbar, Toolbar, Subnavbar, TouchRipple, Modal, Dialog, Popup, LoginScreen, Popover, Actions, Sheet, Toast, Preloader, Progressbar, Sortable, Swipeout, Accordion, ContactsList, VirtualList, ListIndex, Timeline, Tabs, Panel, Card, Chip, Form, Input, Checkbox, Radio, Toggle, Range, Stepper, SmartSelect, Grid, Calendar, Picker, InfiniteScroll, PullToRefresh, DataTable, Fab, Searchbar, Messages, Messagebar, Swiper, PhotoBrowser, Notification, Autocomplete, Tooltip, Skeleton, ColorPicker, Treeview, TextEditor, Breadcrumbs, Typography]);
91
+ Framework7.use([DeviceModule, SupportModule, UtilsModule, ResizeModule, TouchModule, ClicksModule, RouterModule, HistoryModule, ServiceWorkerModule, StoreModule, Statusbar, View, Navbar, NavbarNew, SearchbarNew, Toolbar, ToolbarNew, Subnavbar, TouchRipple, Modal, Dialog, Popup, LoginScreen, Popover, Actions, Sheet, Toast, Preloader, Progressbar, Sortable, Swipeout, Accordion, ContactsList, VirtualList, ListIndex, Timeline, Tabs, Panel, Card, Chip, Form, Input, Checkbox, Radio, Toggle, Range, Stepper, SmartSelect, Grid, Calendar, Picker, InfiniteScroll, PullToRefresh, DataTable, Fab, Searchbar, Messages, Messagebar, Swiper, PhotoBrowser, Notification, Autocomplete, Tooltip, Skeleton, ColorPicker, Treeview, TextEditor, Breadcrumbs, Typography]);
85
92
  export { $ as Dom7, utils, getDevice, getSupport, createStore };
86
93
  export default Framework7;
@@ -1,13 +1,13 @@
1
1
  /**
2
- * Framework7 0.0.5
2
+ * Framework7 0.0.7
3
3
  * Full featured mobile HTML framework for building iOS & Android apps
4
4
  * https://framework7.io/
5
5
  *
6
- * Copyright 2014-2025 Vladimir Kharlampidi
6
+ * Copyright 2014-2026 Vladimir Kharlampidi
7
7
  *
8
8
  * Released under the MIT License
9
9
  *
10
- * Released on: December 19, 2025
10
+ * Released on: January 1, 2026
11
11
  */
12
12
 
13
13
  import $ from './shared/dom7.js';
@@ -32,6 +32,13 @@ import Toolbar from './components/toolbar/toolbar.js';
32
32
  import Subnavbar from './components/subnavbar/subnavbar.js';
33
33
  import TouchRipple from './components/touch-ripple/touch-ripple.js';
34
34
  import Modal from './components/modal/modal.js';
35
- Framework7.use([DeviceModule, SupportModule, UtilsModule, ResizeModule, TouchModule, ClicksModule, RouterModule, HistoryModule, ServiceWorkerModule, StoreModule, Statusbar, View, Navbar, Toolbar, Subnavbar, TouchRipple, Modal]);
35
+
36
+ // New Navbar
37
+ import NavbarNew from './components/navbar-new/navbar.js';
38
+ // New Searchbar
39
+ import SearchbarNew from './components/searchbar-new/searchbar.js';
40
+ // New Toolbar
41
+ import ToolbarNew from './components/toolbar-new/toolbar.js';
42
+ Framework7.use([DeviceModule, SupportModule, UtilsModule, ResizeModule, TouchModule, ClicksModule, RouterModule, HistoryModule, ServiceWorkerModule, StoreModule, Statusbar, View, Navbar, NavbarNew, SearchbarNew, Toolbar, ToolbarNew, Subnavbar, TouchRipple, Modal]);
36
43
  export { $ as Dom7, utils, getDevice, getSupport, createStore };
37
44
  export default Framework7;
@@ -21,9 +21,16 @@ import Subnavbar from './components/subnavbar/subnavbar.js';
21
21
  import TouchRipple from './components/touch-ripple/touch-ripple.js';
22
22
  import Modal from './components/modal/modal.js';
23
23
 
24
+ // New Navbar
25
+ import NavbarNew from './components/navbar-new/navbar.js';
26
+ // New Searchbar
27
+ import SearchbarNew from './components/searchbar-new/searchbar.js';
28
+ // New Toolbar
29
+ import ToolbarNew from './components/toolbar-new/toolbar.js';
30
+
24
31
  //IMPORT_COMPONENTS
25
32
 
26
- Framework7.use([DeviceModule, SupportModule, UtilsModule, ResizeModule, TouchModule, ClicksModule, RouterModule, HistoryModule, ServiceWorkerModule, StoreModule, Statusbar, View, Navbar, Toolbar, Subnavbar, TouchRipple, Modal
33
+ Framework7.use([DeviceModule, SupportModule, UtilsModule, ResizeModule, TouchModule, ClicksModule, RouterModule, HistoryModule, ServiceWorkerModule, StoreModule, Statusbar, View, Navbar, NavbarNew, SearchbarNew, Toolbar, ToolbarNew, Subnavbar, TouchRipple, Modal
27
34
  //INSTALL_COMPONENTS
28
35
  ]);
29
36