UNPKG

@digital-realty/grid

Version:

A free, flexible and high-quality Web Component for showing large amounts of tabular data

72 lines (66 loc) 2.34 kB
/** * @license * Copyright (c) 2016 - 2025 Vaadin Ltd. * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ */ import { DirMixin } from '@vaadin/component-base/src/dir-mixin.js'; import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js'; import { type GridSorterEventMap, GridSorterMixin } from './vaadin-grid-sorter-mixin.js'; export * from './vaadin-grid-sorter-mixin.js'; /** * `<vaadin-grid-sorter>` is a helper element for the `<vaadin-grid>` that provides out-of-the-box UI controls, * visual feedback, and handlers for sorting the grid data. * * #### Example: * ```html * <vaadin-grid-column id="column"></vaadin-grid-column> * ``` * ```js * const column = document.querySelector('#column'); * column.renderer = (root, column, model) => { * let sorter = root.firstElementChild; * if (!sorter) { * sorter = document.createElement('vaadin-grid-sorter'); * root.appendChild(sorter); * } * sorter.path = 'name.first'; * }; * ``` * * ### Styling * * The following shadow DOM parts are available for styling: * * Part name | Description * ----------------|---------------- * `content` | The slotted content wrapper * `indicators` | The internal sorter indicators. * `order` | The internal sorter order * * The following state attributes are available for styling: * * Attribute | Description | Part name * -------------|-------------|------------ * `direction` | Sort direction of a sorter | :host * * @fires {CustomEvent} direction-changed - Fired when the `direction` property changes. * @fires {CustomEvent} sorter-changed - Fired when the `path` or `direction` property changes. */ declare class GridSorter extends GridSorterMixin(ThemableMixin(DirMixin(HTMLElement))) { addEventListener<K extends keyof GridSorterEventMap>( type: K, listener: (this: GridSorter, ev: GridSorterEventMap[K]) => void, options?: AddEventListenerOptions | boolean, ): void; removeEventListener<K extends keyof GridSorterEventMap>( type: K, listener: (this: GridSorter, ev: GridSorterEventMap[K]) => void, options?: EventListenerOptions | boolean, ): void; } declare global { interface HTMLElementTagNameMap { 'vaadin-grid-sorter': GridSorter; } } export { GridSorter };