UNPKG

framework7

Version:

Full featured mobile HTML framework for building iOS & Android apps

44 lines (40 loc) 1.73 kB
import { Dom7Array } from 'dom7'; import { CSSSelector, Framework7Plugin } from '../app/app-class.js'; export namespace Toolbar { interface AppMethods { toolbar: { /** Hide toolbar */ hide(toolbarEl: HTMLElement | CSSSelector, animate?: boolean): void; /** Show toolbar */ show(toolbarEl: HTMLElement | CSSSelector, animate?: boolean): void; /** Set highlight on tab links according to active one (This will have effect only in MD theme) */ setHighlight(tabbarEl: HTMLElement | CSSSelector): void; }; } interface AppParams { toolbar?: | { /** Will hide Toolbars/Tabbars on page scroll (default false) */ hideOnPageScroll?: boolean; /** Set to true to show hidden Toolbar/Tabbar when scrolling reaches end of the page (default true) */ showOnPageScrollEnd?: boolean; /** Set to false and hidden Toolbar/Tabbar will not become visible when you scroll page to top everytime. They will become visible only at the most top scroll position, in the beginning of the page (default true) */ showOnPageScrollTop?: boolean; } | undefined; } interface DomEvents { /** Event will be triggered when Toolbar becomes hidden */ 'toolbar:hide': () => void; /** Event will be triggered when Toolbar becomes visible */ 'toolbar:show': () => void; } interface AppEvents { /** Event will be triggered when Toolbar becomes visible */ toolbarShow: (toolbarEl: HTMLElement) => void; /** Event will be triggered when Toolbar becomes hidden */ toolbarHide: (toolbarEl: HTMLElement) => void; } } declare const ToolbarComponent: Framework7Plugin; export default ToolbarComponent;