mirror of
https://github.com/mudita/mudita-center.git
synced 2025-12-23 22:28:03 -05:00
91 lines
2.7 KiB
TypeScript
91 lines
2.7 KiB
TypeScript
|
|
export enum ModalCloseButtonTestIds {
|
|
IconButton = "modal-close-button-icon-button",
|
|
}
|
|
|
|
export enum InteractiveTextInputTestIds {
|
|
Text = "interactive-text-input-text",
|
|
Input = "interactive-text-input-input",
|
|
IconButton = "interactive-text-input-icon-button",
|
|
ErrorText = "interactive-text-input-error-text",
|
|
}
|
|
|
|
export enum TypographyTestIds {
|
|
H1 = "ui-typography-h1",
|
|
H2 = "ui-typography-h2",
|
|
H3 = "ui-typography-h3",
|
|
H4 = "ui-typography-h4",
|
|
H5 = "ui-typography-h5",
|
|
P1 = "ui-typography-p1",
|
|
P2 = "ui-typography-p2",
|
|
P3 = "ui-typography-p3",
|
|
P4 = "ui-typography-p4",
|
|
P5 = "ui-typography-p5",
|
|
}
|
|
|
|
export enum CheckboxTestIds {
|
|
Checkbox = "ui-checkbox",
|
|
}
|
|
|
|
export enum TableTestIds {
|
|
Table = "ui-table",
|
|
TableRow = "ui-table-row",
|
|
TableHeaderRow = "ui-table-header-row",
|
|
TablePlaceholderRow = "ui-table-place-holder-row",
|
|
TableCell = "ui-table-cell",
|
|
TableHeaderCell = "ui-table-header-cell",
|
|
}
|
|
|
|
export enum PredefinedBackupPasswordTestIds {
|
|
Title = "predefined-backup-password-title",
|
|
Description = "predefined-backup-password-description",
|
|
PasswordPlaceholder = "predefined-backup-password-placeholder",
|
|
PasswordRepeatPlaceholder = "predefined-backup-password-repeat-placeholder",
|
|
ConfirmButton = "predefined-backup-password-confirm-button",
|
|
SkipButton = "predefined-backup-password-skip-button",
|
|
}
|
|
|
|
export enum PredefinedBackupProgressTestIds {
|
|
Title = "predefined-backup-progress-title",
|
|
Description = "predefined-backup-progress-description",
|
|
ProgressBar = "predefined-backup-progress-progressbar",
|
|
}
|
|
|
|
export enum ProgressBarTestIds {
|
|
Description = "progressbar-description",
|
|
Progress = "progressbar-progress",
|
|
Details = "progressbar-details",
|
|
}
|
|
|
|
export enum ContactSupportModalTestIds {
|
|
Title = "contact-support-modal-success-title",
|
|
Description = "contact-support-modal-success-description",
|
|
CloseButton = "contact-support-modal-success-close-button",
|
|
}
|
|
|
|
export enum ButtonTestIds {
|
|
PrimaryButton = "primary-button",
|
|
}
|
|
|
|
export enum BackupModalTestIds {
|
|
Title = "backup-features-modal-title",
|
|
Description = "backup-features-modal-description",
|
|
FeatureElementActive = "backup-features-modal-element-active",
|
|
FeatureElementInactive = "backup-features-modal-element-inactive",
|
|
CreateBackupAction = "backup-features-modal-create-action",
|
|
CancelBackupAction = "backup-features-modal-cancel-action",
|
|
}
|
|
|
|
export enum ModalTestIds {
|
|
Modal = "modal-content",
|
|
}
|
|
|
|
export enum NewContactSupportModalTestIds {
|
|
Title = "contact-support-modal-title",
|
|
Subtitle = "contact-support-modal-subtitle",
|
|
EmailLabel = "email-label",
|
|
MessageLabel = "message-label",
|
|
AttachedFilesLabel = "attached-files-label",
|
|
AttachedFilesSubtext = "attached-files-subtext",
|
|
}
|