| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /**
- * @license
- * Copyright 2019 Google Inc.
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
- /**
- * CSS class names used in component.
- */
- export declare const cssClasses: {
- CELL: string;
- CELL_NUMERIC: string;
- CONTENT: string;
- HEADER_CELL: string;
- HEADER_CELL_LABEL: string;
- HEADER_CELL_SORTED: string;
- HEADER_CELL_SORTED_DESCENDING: string;
- HEADER_CELL_WITH_SORT: string;
- HEADER_CELL_WRAPPER: string;
- HEADER_ROW: string;
- HEADER_ROW_CHECKBOX: string;
- IN_PROGRESS: string;
- LINEAR_PROGRESS: string;
- PAGINATION_ROWS_PER_PAGE_LABEL: string;
- PAGINATION_ROWS_PER_PAGE_SELECT: string;
- PROGRESS_INDICATOR: string;
- ROOT: string;
- ROW: string;
- ROW_CHECKBOX: string;
- ROW_SELECTED: string;
- SORT_ICON_BUTTON: string;
- SORT_STATUS_LABEL: string;
- TABLE_CONTAINER: string;
- };
- /**
- * DOM attributes used in component.
- */
- export declare const attributes: {
- ARIA_SELECTED: string;
- ARIA_SORT: string;
- };
- /**
- * List of data attributes used in component.
- */
- export declare const dataAttributes: {
- COLUMN_ID: string;
- ROW_ID: string;
- };
- /**
- * CSS selectors used in component.
- */
- export declare const selectors: {
- CONTENT: string;
- HEADER_CELL: string;
- HEADER_CELL_WITH_SORT: string;
- HEADER_ROW: string;
- HEADER_ROW_CHECKBOX: string;
- PROGRESS_INDICATOR: string;
- ROW: string;
- ROW_CHECKBOX: string;
- ROW_SELECTED: string;
- SORT_ICON_BUTTON: string;
- SORT_STATUS_LABEL: string;
- };
- /**
- * Messages used in component.
- */
- export declare const messages: {
- SORTED_IN_DESCENDING: string;
- SORTED_IN_ASCENDING: string;
- };
- /**
- * Sort values defined by ARIA.
- * See https://www.w3.org/WAI/PF/aria/states_and_properties#aria-sort
- */
- export declare enum SortValue {
- ASCENDING = "ascending",
- DESCENDING = "descending",
- NONE = "none",
- OTHER = "other"
- }
- /**
- * Event names used in component.
- */
- export declare const events: {
- ROW_CLICK: string;
- ROW_SELECTION_CHANGED: string;
- SELECTED_ALL: string;
- SORTED: string;
- UNSELECTED_ALL: string;
- };
|