All Downloads are FREE. Search and download functionalities are using the official Maven repository.

app-layoutpackage.src.vaadin-app-layout.d.ts Maven / Gradle / Ivy

The newest version!
/**
 * @license
 * Copyright (c) 2018 - 2024 Vaadin Ltd.
 * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
 */
import { ControllerMixin } from '@vaadin/component-base/src/controller-mixin.js';
import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';

export interface AppLayoutI18n {
  drawer: string;
}

/**
 * Fired when the `drawerOpened` property changes.
 */
export type AppLayoutDrawerOpenedChangedEvent = CustomEvent<{ value: boolean }>;

/**
 * Fired when the `overlay` property changes.
 */
export type AppLayoutOverlayChangedEvent = CustomEvent<{ value: boolean }>;

/**
 * Fired when the `primarySection` property changes.
 */
export type AppLayoutPrimarySectionChangedEvent = CustomEvent<{ value: 'drawer' | 'navbar' }>;

export interface AppLayoutCustomEventMap {
  'drawer-opened-changed': AppLayoutDrawerOpenedChangedEvent;

  'overlay-changed': AppLayoutOverlayChangedEvent;

  'primary-section-changed': AppLayoutPrimarySectionChangedEvent;
}

export type AppLayoutEventMap = AppLayoutCustomEventMap & HTMLElementEventMap;

/**
 * `` is a Web Component providing a quick and easy way to get a common application layout structure done.
 *
 * ```
 * 
 *  
 *  

Company Name

* * Menu item 1 * * *
*

Page title

*

Page content

*
*
* ``` * * For best results, the component should be added to the root level of your application (i.e., as a direct child of ``). * * The page should include a viewport meta tag which contains `viewport-fit=cover`, like the following: * ``` * * ``` * This causes the viewport to be scaled to fill the device display. * To ensure that important content is displayed, use the provided css variables. * ``` * --safe-area-inset-top * --safe-area-inset-right * --safe-area-inset-bottom * --safe-area-inset-left * ``` * * ### Styling * * The following Shadow DOM parts of the `` are available for styling: * * Part name | Description * --------------|---------------------------------------------------------| * `navbar` | Container for the navigation bar * `drawer` | Container for the drawer area * * See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation. * * ### Component's slots * * The following slots are available to be set * * Slot name | Description * -------------------|---------------------------------------------------| * no name | Default container for the page content * `navbar ` | Container for the top navbar area * `drawer` | Container for an application menu * `touch-optimized` | Container for the bottom navbar area (only visible for mobile devices) * * #### Touch optimized * * App Layout has a pseudo-slot `touch-optimized` in order to give more control of the presentation of * elements with `slot[navbar]`. Internally, when the user is interacting with App Layout from a * touchscreen device, the component will search for elements with `slot[navbar touch-optimized]` and move * them to the bottom of the page. * * ### Navigation * * As the drawer opens as an overlay in small devices, it makes sense to close it once a navigation happens. * If you are using Vaadin Router, this will happen automatically unless you change the `closeDrawerOn` event name. * * In order to do so, there are two options: * - If the `vaadin-app-layout` instance is available, then `drawerOpened` can be set to `false` * - If not, a custom event `close-overlay-drawer` can be dispatched either by calling * `window.dispatchEvent(new CustomEvent('close-overlay-drawer'))` or by calling * `AppLayout.dispatchCloseOverlayDrawerEvent()` * * ### Scrolling areas * * By default, the component will act with the "body scrolling", so on mobile (iOS Safari and Android Chrome), * the toolbars will collapse when a scroll happens. * * To use the "content scrolling", in case of the content of the page relies on a pre-defined height (for instance, * it has a `height:100%`), then the developer can set `height: 100%` to both `html` and `body`. * That will make the `[content]` element of app layout scrollable. * On this case, the toolbars on mobile device won't collapse. * * @fires {CustomEvent} drawer-opened-changed - Fired when the `drawerOpened` property changes. * @fires {CustomEvent} overlay-changed - Fired when the `overlay` property changes. * @fires {CustomEvent} primary-section-changed - Fired when the `primarySection` property changes. */ declare class AppLayout extends ElementMixin(ThemableMixin(ControllerMixin(HTMLElement))) { /** * Helper static method that dispatches a `close-overlay-drawer` event */ static dispatchCloseOverlayDrawerEvent(): void; /** * The object used to localize this component. * To change the default localization, replace the entire * `i18n` object with a custom one. * * To update individual properties, extend the existing i18n object as follows: * ```js * appLayout.i18n = { * ...appLayout.i18n, * drawer: 'Drawer' * } * ``` * * The object has the following structure and default values: * ``` * { * drawer: 'Drawer' * } * ``` */ i18n: AppLayoutI18n; /** * Defines whether navbar or drawer will come first visually. * - By default (`primary-section="navbar"`), the navbar takes the full available width and moves the drawer down. * - If `primary-section="drawer"` is set, then the drawer will move the navbar, taking the full available height. * @attr {navbar|drawer} primary-section */ primarySection: 'drawer' | 'navbar'; /** * Controls whether the drawer is opened (visible) or not. * Its default value depends on the viewport: * - `true`, for desktop size views * - `false`, for mobile size views * @attr {boolean} drawer-opened */ drawerOpened: boolean; /** * Drawer is an overlay on top of the content * Controlled via CSS using `--vaadin-app-layout-drawer-overlay: true|false`; */ readonly overlay: boolean; /** * A global event that causes the drawer to close (be hidden) when it is in overlay mode. * - The default is `vaadin-router-location-changed` dispatched by Vaadin Router * * @attr {string} close-drawer-on */ closeDrawerOn: string; addEventListener( type: K, listener: (this: AppLayout, ev: AppLayoutEventMap[K]) => void, options?: AddEventListenerOptions | boolean, ): void; removeEventListener( type: K, listener: (this: AppLayout, ev: AppLayoutEventMap[K]) => void, options?: EventListenerOptions | boolean, ): void; } declare global { interface HTMLElementTagNameMap { 'vaadin-app-layout': AppLayout; } } export { AppLayout };




© 2015 - 2024 Weber Informatics LLC | Privacy Policy