@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
24 lines • 817 B
TypeScript
import { ElementWrapper } from '@awsui/test-utils-core/dom';
import AttributeEditorWrapper, { AttributeEditorRowWrapper } from '../attribute-editor';
import LinkWrapper from '../link';
declare class TagEditorRowWrapper extends AttributeEditorRowWrapper {
findUndoButton(): LinkWrapper | null;
}
export default class TagEditorWrapper extends AttributeEditorWrapper {
static rootSelector: string;
/**
* Returns a row for a given index.
*
* @param row 1-based row index
*/
findRow(row: number): TagEditorRowWrapper | null;
/**
* Returns all rows.
*
* To find a specific row use the `findRow(n)` function as chaining `findRows().get(n)` can return unexpected results.
* @see findRow
*/
findRows(): Array<TagEditorRowWrapper>;
findLoadingText(): ElementWrapper | null;
}
export {};