UNPKG

@kit-data-manager/pid-component

Version:

The PID-Component is a web component that can be used to evaluate and display FAIR Digital Objects, PIDs, ORCiDs, and possibly other identifiers in a user-friendly way. It is easily extensible to support other identifier types.

25 lines (24 loc) 779 B
import { EventEmitter } from '../../stencil-public-runtime'; import { FoldableItem } from '../../utils/FoldableItem'; export declare class PidDataTable { el: HTMLElement; items: FoldableItem[]; itemsPerPage: number; currentPage: number; pageSizes: number[]; loadSubcomponents: boolean; hideSubcomponents: boolean; currentLevelOfSubcomponents: number; levelOfSubcomponents: number; settings: string; darkMode: 'light' | 'dark' | 'system'; pageChange: EventEmitter<number>; itemsPerPageChange: EventEmitter<number>; filteredItems: FoldableItem[]; private tableId; updateFilteredItems(): void; componentWillLoad(): void; componentDidLoad(): void; render(): any; private recalculateContentDimensions; }