UNPKG

@haxtheweb/haxcms-nodejs

Version:

HAXcms single and multisite nodejs server, api, and administration

49 lines (39 loc) 2 kB
/** * DO NOT EDIT * * This file was automatically generated by * https://github.com/Polymer/tools/tree/master/packages/gen-typescript-declarations * * To modify these typings, edit the source file(s): * src/vaadin-grid-event-context-mixin.js */ // tslint:disable:variable-name Describing an API that's defined elsewhere. // tslint:disable:no-any describes the API as best we are able today export {EventContextMixin}; declare function EventContextMixin<T extends new (...args: any[]) => {}>(base: T): T & EventContextMixinConstructor; interface EventContextMixinConstructor { new(...args: any[]): EventContextMixin; } export {EventContextMixinConstructor}; interface EventContextMixin { /** * Returns an object with context information about the event target: * - `item`: the data object corresponding to the targeted row (not specified when targeting header or footer) * - `column`: the column element corresponding to the targeted cell (not specified when targeting row details) * - `section`: whether the event targeted the body, header, footer or details of the grid * * These additional properties are included when `item` is specified: * - `index`: the index of the item * - `selected`: the selected state of the item * - `detailsOpened`: whether the row details are open for the item * - `expanded`: the expanded state of the tree toggle * - `level`: the tree hierarchy level * * The returned object is populated only when a grid cell, header, footer or row details is found in `event.composedPath()`. * This means mostly mouse and keyboard events. If such a grid part is not found in the path, an empty object is returned. * This may be the case eg. if the event is fired on the `<vaadin-grid>` element and not any deeper in the DOM, or if * the event targets the empty part of the grid body. */ getEventContext(event: Event): GridEventContext|object|null; } import {GridEventContext} from '../@types/interfaces';