@awsui/components-react
Version:
AWS UI is a collection of [React](https://reactjs.org/) components that help create intuitive, responsive, and accessible user experiences for web applications. It is developed by Amazon Web Services (AWS). This work is available under the terms of the [A
28 lines (27 loc) • 1.2 kB
TypeScript
import { ComponentWrapper, ElementWrapper } from '@awsui/test-utils-core/dom';
import CollectionPreferencesWrapper from '../collection-preferences';
import PaginationWrapper from '../pagination';
import TextFilterWrapper from '../text-filter';
export declare class CardSectionWrapper extends ComponentWrapper {
findSectionHeader(): ElementWrapper | null;
findContent(): ElementWrapper | null;
}
export declare class CardWrapper extends ComponentWrapper {
findSections(): Array<CardSectionWrapper>;
findCardHeader(): ElementWrapper | null;
findSelectionArea(): ElementWrapper | null;
}
export default class CardsWrapper extends ComponentWrapper {
static rootSelector: string;
private containerWrapper;
findItems(): Array<CardWrapper>;
findSelectedItems(): Array<CardWrapper>;
findHeader(): ElementWrapper | null;
findHeaderRegion(): ElementWrapper | null;
findEmptyRegion(): ElementWrapper | null;
findEmptySlot(): ElementWrapper | null;
findLoadingText(): ElementWrapper | null;
findTextFilter(): TextFilterWrapper | null;
findPagination(): PaginationWrapper | null;
findCollectionPreferences(): CollectionPreferencesWrapper | null;
}