@awsui/components-react
Version:
On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en
28 lines • 1.45 kB
TypeScript
import { ComponentWrapper, ElementWrapper } from '@awsui/test-utils-core/dom';
import ButtonWrapper from '../button';
import CheckboxWrapper from '../checkbox';
import ModalWrapper from '../modal';
import ContentDisplayPreferenceWrapper from './content-display-preference';
import PageSizePreferenceWrapper from './page-size-preference';
import StickyColumnsPreferenceWrapper from './sticky-columns-preference';
import VisibleContentPreferenceWrapper from './visible-content-preference';
declare class PreferencesModalWrapper extends ModalWrapper {
static rootSelector: string;
findCancelButton(): ButtonWrapper | null;
findConfirmButton(): ButtonWrapper | null;
findWrapLinesPreference(): CheckboxWrapper | null;
findStripedRowsPreference(): CheckboxWrapper | null;
findContentDensityPreference(): CheckboxWrapper | null;
findPageSizePreference(): PageSizePreferenceWrapper | null;
findVisibleContentPreference(): VisibleContentPreferenceWrapper | null;
findStickyColumnsPreference(firstOrLast?: 'first' | 'last'): StickyColumnsPreferenceWrapper | null;
findContentDisplayPreference(): ContentDisplayPreferenceWrapper | null;
findCustomPreference(): ElementWrapper | null;
findContentBefore(): ElementWrapper | null;
}
export default class CollectionPreferencesWrapper extends ComponentWrapper {
static rootSelector: string;
findModal(): PreferencesModalWrapper | null;
findTriggerButton(): ButtonWrapper;
}
export {};