@kentico/xperience-admin-components 30.6.4 → 30.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/entry.d.ts CHANGED
@@ -593,15 +593,15 @@ declare interface BaseTreeNodeProps {
593
593
  /**
594
594
  * Test-id attribute of the current node.
595
595
  */
596
- readonly dataTestIdNode?: string;
596
+ readonly dataTestIdNode?: TestId;
597
597
  /**
598
598
  * Test-id of the row of the node.
599
599
  */
600
- readonly dataTestIdNodeRow?: string;
600
+ readonly dataTestIdNodeRow?: TestId;
601
601
  /**
602
602
  * Test-id attribute of the node's children.
603
603
  */
604
- readonly dataTestIdNodeChildren?: string;
604
+ readonly dataTestIdNodeChildren?: TestId;
605
605
  }
606
606
 
607
607
  declare interface BaseTreeViewProps extends UITestProps {
@@ -893,7 +893,7 @@ export declare interface CodeEditorProps extends Omit<ReactCodeMirrorProps, 'ext
893
893
  /**
894
894
  * Test id data attribute.
895
895
  */
896
- readonly dataTestId?: string;
896
+ readonly dataTestId?: TestId;
897
897
  /**
898
898
  * Dangerously sets explanation text as inner HTML.
899
899
  */
@@ -1268,6 +1268,10 @@ export declare interface DateTimePickerTimeValue {
1268
1268
  readonly minutes: number;
1269
1269
  }
1270
1270
 
1271
+ declare type DeepTestIdMapping<T> = {
1272
+ [K in keyof T]: T[K] extends string ? TestId : T[K] extends Record<string, unknown> ? DeepTestIdMapping<T[K]> : T[K];
1273
+ };
1274
+
1271
1275
  declare interface DeleteButtonProps {
1272
1276
  readonly tooltipText: string;
1273
1277
  readonly onDelete: () => void;
@@ -1717,9 +1721,9 @@ declare interface GeneratedIconProps {
1717
1721
  * @param fallback Fallback string to be used if input is undefined or empty
1718
1722
  * @returns String in a correct format for dataTestId
1719
1723
  */
1720
- export declare function getDataTestId(input: string): string;
1724
+ export declare function getDataTestId(input: string): TestId;
1721
1725
 
1722
- export declare function getDataTestId(input: string | undefined, fallback: string): string;
1726
+ export declare function getDataTestId(input: string | undefined, fallback: string): TestId;
1723
1727
 
1724
1728
  /**
1725
1729
  * Converts file size from bytes to other units to make the size readable.
@@ -3384,7 +3388,7 @@ export declare interface MultiselectTreeViewProps extends BaseTreeViewProps {
3384
3388
 
3385
3389
  declare interface NameButtonProps extends Pick<ToggleButtonBaseProps, 'onClick' | 'ariaLabel' | 'isSelected'> {
3386
3390
  readonly label: string;
3387
- readonly dataTestId?: string;
3391
+ readonly dataTestId?: TestId;
3388
3392
  }
3389
3393
 
3390
3394
  export declare interface NamedComponentCell extends TableCell {
@@ -3457,7 +3461,7 @@ export declare interface OptionTileProps extends Pick<React.ButtonHTMLAttributes
3457
3461
  readonly endIcon?: IconName;
3458
3462
  readonly block?: boolean;
3459
3463
  readonly maxWidth?: string | number;
3460
- readonly dataTestId?: string;
3464
+ readonly dataTestId?: TestId;
3461
3465
  readonly shouldExpand?: boolean;
3462
3466
  }
3463
3467
 
@@ -3561,7 +3565,7 @@ export declare interface RadioButtonProps {
3561
3565
  /**
3562
3566
  * Test id data attribute.
3563
3567
  */
3564
- readonly dataTestId?: string;
3568
+ readonly dataTestId?: TestId;
3565
3569
  /**
3566
3570
  * Indicates if the radiobutton is disabled.
3567
3571
  */
@@ -3796,6 +3800,10 @@ export declare interface RichTextEditorProps extends UITestProps {
3796
3800
  * Label actions element.
3797
3801
  */
3798
3802
  readonly labelActionsElement?: React.ReactNode;
3803
+ /**
3804
+ * Language identifier (e.g., 'en-US') used for localizing UI elements such as tooltips, labels, and messages in the editor.
3805
+ */
3806
+ readonly language?: UICultureCode;
3799
3807
  }
3800
3808
 
3801
3809
  /**
@@ -4820,9 +4828,9 @@ export declare interface TagProps {
4820
4828
  readonly isDragging?: boolean;
4821
4829
  readonly leadingButton?: React_2.ReactElement<HTMLButtonElement>;
4822
4830
  readonly mode?: TagMode;
4823
- readonly dataTestId?: string;
4824
- readonly dataTestIdTagButton?: string;
4825
- readonly dataTestIdRemoveButton?: string;
4831
+ readonly dataTestId?: TestId;
4832
+ readonly dataTestIdTagButton?: TestId;
4833
+ readonly dataTestIdRemoveButton?: TestId;
4826
4834
  }
4827
4835
 
4828
4836
  export declare const TagTableCellComponent: ({ color, label, tooltipText }: TagTableCellComponentProps) => JSX_2.Element;
@@ -4834,295 +4842,594 @@ export declare interface TagTableCellComponentProps {
4834
4842
  }
4835
4843
 
4836
4844
  /**
4845
+ * Unified test ID map used in both components and tests.
4846
+ * Combines UI-defined IDs and test-only generated ones.
4847
+ *
4837
4848
  * Intended for internal use only.
4838
4849
  * Shared `data-testid` values used across tests and UI.
4839
4850
  * May change over time.
4840
4851
  */
4841
- export declare enum TestIds {
4842
- NestedActionMenuItemMassUpload = "nested-action-menu-item-mass-upload",
4843
- ExpandSplitButton = "expand-split-button",
4844
- SidePanelHeadline = "side-panel-headline",
4845
- CrossInSircleButton = "xp-times-circle",
4846
- UploadFieldName = "UploadFieldName",
4847
- ContentTypeForMassUploadedItems = "content-type-for-mass-uploaded-items",
4848
- Chevron = "chevron",
4849
- ConfirmAction = "confirm-action",
4850
- ContentType = "ContentType",
4851
- Create = "Create",
4852
- DeleteFolderActionButton = "deletefolder-action",
4853
- EnableFolderActionButton = "enablecontentdelivery-action",
4854
- DisplayName = "DisplayName",
4855
- FolderDisplayName = "FolderDisplayName",
4856
- NewSmartFolderPlusButton = "new-smart-folder-plus-button",
4857
- RenameFolderActionButton = "renamefolder-action",
4858
- RenameSmartFolderDialog = "rename-smart-folder-dialog",
4859
- CloneSmartFolderDialog = "clone-smart-folder-dialog",
4860
- SidePanel = "side-panel",
4861
- SidePanelCloseButton = "side-panel-close",
4862
- SmartFolderFilterForm = "smart-folder-form",
4863
- SmartFolderLabel = "smart-folder-label",
4864
- SubmitButton = "submit-button",
4865
- CreateEmailForm = "create-email-form",
4866
- TreeItemMenuButton = "tree-item-menu-button",
4867
- Button = "button",
4868
- AddButton = "button-add",
4869
- FieldName = "field-name",
4870
- Email = "Email",
4871
- EmailTemplate = "EmailTemplate",
4872
- EmailTemplateDisplayName = "EmailTemplateDisplayName",
4873
- EmailTemplateCode = "EmailTemplateCode",
4874
- EmailTemplateDescription = "EmailTemplateDescription",
4875
- EmailPurpose = "EmailPurpose",
4876
- ButtonActionMenu = "button-action-menu",
4877
- DeleteButton = "button-Delete",
4878
- SaveSmartFolderDialog = "save-smart-folder-dialog",
4879
- UserNameInputField = "userName",
4880
- Submit = "submit",
4881
- CreateButton = "button-create",
4882
- ButtonCreate = "Create",
4883
- ChannelDisplayName = "ChannelDisplayName",
4884
- ChannelType = "ChannelType",
4885
- MenuItem = "menu-item",
4886
- ChannelSize = "ChannelSize",
4887
- PrimaryLanguage = "primary-language",
4888
- ContentLanguage = "content-language",
4889
- WebsiteChannelDomain = "WebsiteChannelDomain",
4890
- EnglishLanguage = "english",
4891
- ActionTileButton = "action-tile",
4892
- PasswordInputField = "password",
4893
- ChannelNameCell = "table-cell-ChannelDisplayName",
4894
- TableRow = "table-row",
4895
- Table = "table",
4896
- AvatarButton = "AvatarButton",
4897
- EnabledForDeliveryIcon = "xp-truck-moving",
4898
- Callout = "callout",
4899
- BreadcrumbHome = "breadcrumb-home",
4900
- BreadcrumbApplication = "breadcrumb-application",
4901
- EditForm = "edit-form",
4902
- ConfirmationForm = "confirmation-form",
4903
- ApplicationTile = "application-tile",
4904
- ViewMenuItem = "view-menu-item",
4905
- TemplateLoaderErrorPane = "templateLoaderErrorPane",
4906
- SnackbarErrorMessage = "snackbar-item-error",
4907
- SnackbarSuccessMessage = "snackbar-item-success",
4908
- SideNavigationVerticalMenu = "side-navigation-vertical-menu",
4909
- AutomationNodeStatisticsCount = "statistics-count",
4910
- AutomationProcessDisplayName = "WorkflowDisplayName",
4911
- AutomationProcessRecurrenceType = "WorkflowRecurrenceType",
4912
- AutomationSaveButton = "save-automation-button",
4913
- AutomationAddTriggerButton = "rf__node-startPlaceholder",
4914
- AutomationAddStepButton = "rf__node-endPlaceholder-1",
4915
- AutomationFormTrigger = "item-tile-form",
4916
- AutomationRegistrationTrigger = "item-tile-registration",
4917
- ItemTileWait = "item-tile-wait",
4918
- ItemTileSendEmail = "item-tile-send-email",
4919
- ItemTileCondition = "item-tile-condition",
4920
- ItemTileFinish = "item-tile-finish",
4921
- StepDisplayName = "StepDisplayName",
4922
- SelectForm = "select-a-form",
4923
- AfterTime = "AfterTime",
4924
- AutomationStepForm = "automation-step-form",
4925
- AutomationProcessSidePanel = "automation-process-side-panel",
4926
- AddCondition = "add-condition",
4927
- AddConditionGroup = "add-condition-group",
4928
- DeleteConditionButton = "delete-condition-button",
4929
- ContactIsMember = "cmscontactismember",
4930
- EmailChannelSendingDomain = "EmailChannelSendingDomain",
4931
- EmailChannelServiceDomain = "EmailChannelServiceDomain",
4932
- ContentTypeName = "ClassDisplayName",
4933
- ContentTypeCodeNameSpace = "code-name-namespace",
4934
- ContentTypeCodeName = "code-name",
4935
- Icon = "icon-value",
4936
- ClassContentTypeType = "ClassContentTypeType",
4937
- OpenBindingSidepanel = "open-binding-sidepanel",
4938
- ButtonOpenSidepanel = "button-open-binding-sidepanel",
4939
- ContentItemSplitButtonContinue = "content-item-menu-split-button-continue",
4940
- ContentItemSplitButtonPublish = "content-item-menu-split-button-publish",
4941
- EmailConfigurationMenuActions = "email-configuration-menu-actions",
4942
- MenuActions = "menu-actions",
4943
- ContentItemActionButton = "content-item-action-button",
4944
- ContentItemDiscard = "content-item-action-button-discard",
4945
- ContentItemButtonCreate = "content-item-action-button-create",
4946
- ContentItemContinueButton = "content-item-action-button-continue",
4947
- ContentItemSavecontent = "content-item-action-button-save",
4948
- ContentItemConfirmFirstSelection = "content-item-action-button-confirmfirstselection",
4949
- ContentItemActionMenu = "content-item-action-menu",
4950
- ContentItemSendDraft = "content-item-action-menu-senddraft",
4951
- ContentItemDelete = "content-item-action-menu-delete",
4952
- ContentItemDeleteDialog = "content-item-delete-dialog",
4953
- ContetItemRevertToPublished = "content-item-action-menu-item-discardchanges",
4954
- ContentItemClone = "content-item-action-menu-item-clone",
4955
- EmailSubject = "EmailSubject",
4956
- EmailName = "EmailName",
4957
- EmailTemplateProperties = "email-template",
4958
- EmailSender = "sender",
4959
- EmailPanelContent = "email-panel-content",
4960
- EmailChannelSenderDisplayName = "EmailChannelSenderDisplayName",
4961
- EmailChannelSenderEmailAddress = "EmailChannelSenderEmailAddress",
4962
- SenderAndRecipients = "Sender and recipients",
4963
- ButtonSelectEmail = "button-select-email",
4964
- SelectEmail = "SelectEmail",
4965
- PageMenuActions = "page-menu-actions",
4966
- ItemTile = "item-tile",
4967
- GoToDashboardButton = "button-goToDashboard",
4968
- Snackbar = "snackbar",
4969
- SendingDomain = "EmailChannelSendingDomain",
4970
- EmailServiceDomain = "EmailChannelServiceDomain",
4971
- CodeName = "code-name",
4972
- ContentTypeType = "ClassContentTypeType",
4973
- ClassDisplayName = "ClassDisplayName",
4974
- Namespace = "code-name-namespace",
4975
- Name = "Name",
4976
- RequiredCheckbox = "RequiredCheckbox",
4977
- VisibleCheckbox = "VisibleCheckbox",
4978
- FieldCaption = "FieldCaption",
4979
- FormComponent = "FormComponent",
4980
- DataType = "DataType",
4981
- Dialog = "dialog",
4982
- CancelAction = "cancel-action",
4983
- CloseCross = "xp-cancel",
4984
- GenerateEmailContentButton = "generate-email-content-button",
4985
- GenerateEmailSubjectBasedOnEmailContentButton = "generate-email-subject-based-on-email-content-button",
4986
- RichTextEditorRefinementsButton = "rich-text-editor-refinements-button",
4987
- EmailContentFieldsSelector = "email-content-fields",
4988
- BarItem = "bar-item",
4989
- Size = "Size",
4990
- DraggableButton = "draggable-button",
4991
- EmailContentFieldsChevron = "email-content-fields-dropdown-indicator",
4992
- BindingSidePanelButton = "button-open-binding-sidepanel",
4993
- EmailTemplateSelector = "EmailTemplate",
4994
- ContinueButton = "content-item-action-button-continue",
4995
- CreateEmailPage = "create-email-page",
4996
- ContentItemActionButtonCreate = "content-item-action-button-create",
4997
- ContentItemActionButtonSave = "content-item-action-button-save",
4998
- EmailPreviewText = "EmailPreviewText",
4999
- EmailPreview = "email-preview",
5000
- EmailBody = "Body",
5001
- ArrowSend = "xp-arrow-send",
5002
- RefinementHeader = "refinement-header",
5003
- RteRefinementSuggestionsList = "rte-refinement-suggestions-list",
5004
- SubjectSuggestionsList = "email-subject-suggestions-list",
5005
- BodySuggestionsList = "email-body-suggestions-list",
5006
- ProvideAdditionalParametersCheckbox = "ProvideAdditionalParametersCheckbox",
5007
- GenerateWebsiteChannelCheckbox = "GenerateWebsiteChannelCheckbox",
5008
- TopicAndMainMessage = "TopicAndMainMessage",
5009
- CallToActionDescription = "CallToActionDescription",
5010
- TargetAudience = "TargetAudience",
5011
- WebUrls = "WebUrls",
5012
- CustomDescription = "CustomDescription",
5013
- MagicEdit = "xp-magic-edit",
5014
- EditPage = "edit-page",
5015
- ContentSource = "Source",
5016
- MaximumNumberOfWords = "MaximumNumberOfWords",
5017
- SnackbarMessage = "snackbar-item-message",
5018
- AutomationNode = "automation-node",
5019
- WorkspaceSelectorDropdownGroup = "WorkspaceSelectionDropdown",
5020
- WorkspaceSelectorDropdownActionMenu = "WorkspaceSelectorDropdownActionMenu",
5021
- VerticalTab = "vertical-tab",
5022
- EnableDisableProcessButton = "enable-disable-process-button",
5023
- TypeField = "type",
5024
- SourceField = "Source",
5025
- EventCodeField = "EventCode",
5026
- UserNameField = "user-name",
5027
- DateFromField = "EventTime-date-from",
5028
- DateToField = "data-testid=\"EventTime-date-to",
5029
- FilterPanelButton = "filter-button",
5030
- CancelButton = "cancel-button",
5031
- FilterForm = "filter-form",
5032
- ClearAllButton = "clear-all-button",
5033
- SubmitFormButton = "submit-form-button",
5034
- RecalculateAutomationsStatisticsButton = "recalculate-automations-statistics-button",
5035
- WorkspaceDisplayName = "WorkspaceDisplayName",
5036
- WorkspaceName = "WorkspaceName",
5037
- AllowedContentTypes = "allowed-content-types",
5038
- AllowedContentType = "allowed-content-type",
5039
- RoleDisplayName = "RoleDisplayName",
5040
- RoleDescription = "RoleDescription",
5041
- ApplicationItemSelector = "application-item-selector",
5042
- PermissionItemSelector = "permission-item-selector",
5043
- WorkspaceItemSelector = "workspace-item-selector",
5044
- SelectApplication = "select-application",
5045
- XpChevronUp = "xp-chevron-up",
5046
- XpChevronDown = "xp-chevron-down",
5047
- PermissionSet = "permission-set",
5048
- ModuleDisplayName = "ResourceDisplayName",
5049
- FormDisplayName = "FormDisplayName",
5050
- DatabaseColumn = "DatabaseColumn",
5051
- DisplayNameColumn = "DisplayNameColumn",
5052
- CodeNameColumn = "CodeNameColumn",
5053
- AiraIcon = "xp-ai",
5054
- AiraButton = "AiraButton",
5055
- ApplicationMenu = "application-menu",
5056
- ApplicationMenuTile = "application-tile",
5057
- ApplicationListItem = "application-list-item",
5058
- TableHeader = "table-header",
5059
- SearchInput = "search-input",
5060
- ClearSearchButton = "clear-search-button",
5061
- HeadlessChannelPreviewUrl = "HeadlessChannelPreviewUrl",
5062
- WebsiteChannel = "website-channel",
5063
- TrackedWebsiteDisplayName = "TrackedWebsiteDisplayName",
5064
- TrackedWebsiteURL = "TrackedWebsiteURL",
5065
- TrackedWebsiteDescription = "TrackedWebsiteDescription",
5066
- TrackedWebsiteCodeSnippet = "TrackedWebsiteCodeSnippet",
5067
- RecipientListThankYouPage = "ContactGroupRecipientListThankYouPage",
5068
- SelectWebPageButton = "button-select-web-page",
5069
- SelectWebPage = "SelectWebPage",
5070
- SelectWebPageWebsiteChannel = "select-web-page",
5071
- ObjectType = "ObjectType",
5072
- ContentItemButtonConfirmSelection = "content-item-action-button-confirmselection",
5073
- RegisterPassword = "register-password",
5074
- SignUpButton = "sign-up-button",
5075
- DropdownSelector = "dropdown-selector",
5076
- WorkspaceSelector = "WorkspaceSelector",
5077
- NewFolderPlus = "new-folder-plus",
5078
- IsContentDeliveryEnabledCheckbox = "IsContentDeliveryEnabledCheckbox",
5079
- ContentTypeWithDash = "content-type",
5080
- ContentTypeCamelCase = "ContentType",
5081
- CreateFolderDialog = "create-folder-dialog",
5082
- TreeItemTitle = "tree-item-title",
5083
- ContentItemActionConfirmSelection = "content-item-action-button-confirmselection",
5084
- ContentItemActionDiscard = "content-item-action-button-discard",
5085
- ListingHeaderActions = "listing-header-actions",
5086
- ContentItemMenuSplitButtonPublish = "content-item-menu-split-button-publish",
5087
- ButtonSelectExistingContentItem = "button-select-existing-content-item",
5088
- ButtonCreateNewContentItem = "button-create-new-content-item",
5089
- SmartFolderForm = "smart-folder-form",
5090
- ContactGroupDisplayName = "ContactGroupDisplayName",
5091
- ContactGroupDescription = "ContactGroupDescription",
5092
- CreatePageButton = "create-page-button",
5093
- CreateWebPageForm = "create-web-page-form",
5094
- ContentItemMenuSplitButtonCreatenewversion = "content-item-menu-split-button-createnewversion",
5095
- RecipientListApprovalSettings = "Approval settings",
5096
- RecipientListUnsubscribeSettings = "Unsubscribe settings",
5097
- RecipientListEditBasicDataButton = "edit-recipient-list-basic-data-button",
5098
- EmailConfigurationGeneralForm = "General",
5099
- EmailSendTo = "send-to",
5100
- EmailReviewAndSendButton = "content-item-menu-split-button-reviewandsend",
5101
- EmailSendRadioOptions = "ImmediateSend",
5102
- EmailSendScheduledTime = "ScheduledTime",
5103
- BreadcrumbStatus = "breadcrumbs-status",
5104
- NotificationBar = "notification-bar",
5105
- NotificationBarAlert = "notification-bar-alert-0",
5106
- NotificationBarWarning = "notification-bar-warning-0",
5107
- NotificationBarInfo = "notification-bar-info-0",
5108
- EmailEditRegularButton = "content-item-menu-split-button-editregular",
5109
- EmailEditNonRegularButton = "content-item-menu-split-button-edit",
5110
- EmailRescheduleButton = "content-item-action-menu-item-reschedule",
5111
- SideMenuItem = "side-menu-item",
5112
- EmailPlainText = "EmailPlainText",
5113
- ContentItemDeleteButton = "content-item-action-menu-item-delete",
5114
- EmailNoStatisticsData = "no-statistics-data",
5115
- EmailRecalculateStatisticsButton = "recalculate-email-statistics-button",
5116
- RichTextEditor = "rich-text-editor",
5117
- RecipientAttribute = "RecipientAttribute",
5118
- BackupText = "BackupText",
5119
- InsertDynamicTextDialog = "insert-dynamic-text-dialog",
5120
- RTEInsertDynamicTextButton = "insertDynamicTextButton",
5121
- TaxonomyTitle = "TaxonomyTitle",
5122
- TaxonomyDescription = "TaxonomyDescription",
5123
- TemplateSelector = "template-selector",
5124
- StatusCard = "status-card"
5125
- }
4852
+ export declare type TestId = string & {
4853
+ readonly __type: 'TestId';
4854
+ };
4855
+
4856
+ export declare const TestIds: DeepTestIdMapping<typeof testIds>;
4857
+
4858
+ declare const testIds: {
4859
+ ActionLists: {
4860
+ EmailConfiguration: "email-configuration-menu-actions";
4861
+ HeadlessItemMenu: "headless-item-menu-actions";
4862
+ ListingHeader: "listing-header-actions";
4863
+ PageMenu: "page-menu-actions";
4864
+ };
4865
+ ActionTiles: {
4866
+ Default: "action-tile";
4867
+ Item: "item-tile";
4868
+ };
4869
+ ApplicationListItems: {
4870
+ Default: "application-list-item";
4871
+ };
4872
+ ApplicationTiles: {
4873
+ Default: "application-tile";
4874
+ };
4875
+ AssetTiles: {
4876
+ Default: "asset-tile";
4877
+ FileName: "file-name";
4878
+ Hidden: "asset-tile-hidden";
4879
+ ImagePreview: "image-preview";
4880
+ };
4881
+ Banners: {
4882
+ Sticky: "sticky-banner";
4883
+ };
4884
+ BarItems: {
4885
+ Default: "bar-item";
4886
+ StepName: "step-name";
4887
+ };
4888
+ Breadcrumbs: {
4889
+ Default: "breadcrumbs";
4890
+ Application: "breadcrumb-application";
4891
+ Home: "breadcrumb-home";
4892
+ Status: "breadcrumbs-status";
4893
+ };
4894
+ Buttons: {
4895
+ Apply: "button-apply";
4896
+ AutomationAddStep: "rf__node-endPlaceholder-1";
4897
+ AutomationAddTrigger: "rf__node-startPlaceholder";
4898
+ ChangeWorkflowStep: "content-item-menu-split-button-changeworkflowstep";
4899
+ ClearCache: "clear-cache-button";
4900
+ ContactIsMember: "cmscontactismember";
4901
+ ContentItemActionCancelScheduledPublish: "content-item-action-menu-item-cancelscheduledpublish";
4902
+ ContentItemActionCancelScheduledUnpublish: "content-item-action-menu-item-cancelscheduledunpublish";
4903
+ ContentItemActionConfirmFirstSelection: "content-item-action-button-confirmfirstselection";
4904
+ ContentItemActionConfirmSelection: "content-item-action-button-confirmselection";
4905
+ ContentItemActionContinue: "content-item-action-button-continue";
4906
+ ContentItemActionCreate: "content-item-action-button-create";
4907
+ ContentItemActionDiscard: "content-item-action-button-discard";
4908
+ ContentItemActionMenuItemClone: "content-item-action-menu-item-clone";
4909
+ ContentItemActionMenuItemDelete: "content-item-action-menu-item-delete";
4910
+ ContentItemActionMenuItemReschedule: "content-item-action-menu-item-reschedule";
4911
+ ContentItemActionMenuItemUnpublish: "content-item-action-menu-item-unpublish";
4912
+ ContentItemActionPublish: "content-item-action-button-publish";
4913
+ ContentItemActionRevertToPublished: "content-item-action-menu-item-discard";
4914
+ ContentItemActionSave: "content-item-action-button-save";
4915
+ ContentItemEditScheduledPage: "content-item-menu-split-button-cancelscheduledpublishandedit";
4916
+ ContentItemMenuSplitContinue: "content-item-menu-split-button-continue";
4917
+ ContentItemMenuSplitCreateNewVersion: "content-item-menu-split-button-createnewversion";
4918
+ ContentItemMenuSplitEdit: "content-item-menu-split-button-edit";
4919
+ ContentItemMenuSplitEditRegular: "content-item-menu-split-button-editregular";
4920
+ ContentItemMenuSplitPublish: "content-item-menu-split-button-publish";
4921
+ ContentItemMenuSplitReviewAndSend: "content-item-menu-split-button-reviewandsend";
4922
+ ContentItemRevertToPublished: "content-item-action-menu-item-discardchanges";
4923
+ Create_V1: "button-create";
4924
+ Create_V2: "Create";
4925
+ CreateFolder_V2: "createfolder-action";
4926
+ CreateNewStage: "create-new-stage-button";
4927
+ Delete_V3: "button-Delete";
4928
+ Delete_V4: "delete-action";
4929
+ DeleteFolder: "deletefolder-action";
4930
+ EditRecipientListBasicData: "edit-recipient-list-basic-data-button";
4931
+ EmailContentFieldsDropdown: "email-content-fields-dropdown-indicator";
4932
+ EnableContentDelivery: "enablecontentdelivery-action";
4933
+ GenerateChannels: "generate-channels-button";
4934
+ GenerateEmailContent: "generate-email-content-button";
4935
+ GenerateEmailSubjectBasedOnEmailContent: "generate-email-subject-based-on-email-content-button";
4936
+ GenerateWebsiteChannelData: "generate-website-channel-data-button";
4937
+ InsertDynamicText: "insertDynamicTextButton";
4938
+ MoveFolder: "movefolder-action";
4939
+ NestedActionMenuItemMassUpload: "nested-action-menu-item-mass-upload";
4940
+ OpenBindingSidePanel: "button-open-binding-sidepanel";
4941
+ RemoveBinding: "button-RemoveBinding";
4942
+ RenameFolder: "renamefolder-action";
4943
+ RichTextEditorRefinements: "rich-text-editor-refinements-button";
4944
+ Save: "button-save";
4945
+ WebsiteChannel: "website-channel";
4946
+ Default: "button";
4947
+ ActionMenu: "button-action-menu";
4948
+ Add: "button-add";
4949
+ AddAnotherCondition: "add-another-condition-button";
4950
+ AddCondition: "add-condition";
4951
+ AddConditionGroup: "add-condition-group";
4952
+ AddRoles: "add-roles-button";
4953
+ Adjust: "adjust-button";
4954
+ Aira: "AiraButton";
4955
+ AiraClose: "aira-close-button";
4956
+ AiraNewConversation: "aira-new-conversation-button";
4957
+ AllContentItemsButton: "all-content-items-button";
4958
+ Avatar: "AvatarButton";
4959
+ Cancel_V1: "cancel-action";
4960
+ Cancel_V2: "cancel-button";
4961
+ Chevron: "chevron";
4962
+ ClearAll: "clear-all-button";
4963
+ ClearSearch: "clear-search-button";
4964
+ Close: "close-button";
4965
+ CloseSidePanel_V1: "close-panel-button";
4966
+ CloseSidePanel_V2: "side-panel-close";
4967
+ Confirm: "confirm-action";
4968
+ CreateAutomationProcess: "button-create-automation-process";
4969
+ CreateFolder_V1: "create-folder-button";
4970
+ CreateNewContentItem: "button-create-new-content-item";
4971
+ CreatePage: "create-page-button";
4972
+ Delete_V1: "delete-button";
4973
+ Delete_V2: "button-delete";
4974
+ DeleteConditionButton: "delete-condition-button";
4975
+ DialogFooterAction: "dialog-footer-action";
4976
+ Draggable: "draggable-button";
4977
+ Edit_V1: "button-edit";
4978
+ Edit_V2: "button-Edit";
4979
+ EditableHeader: "editable-header-button";
4980
+ EditContentItem: "edit-content-item-button";
4981
+ EnableDisableProcess: "enable-disable-process-button";
4982
+ Expand: "expand-button";
4983
+ ExpandSplit: "expand-split-button";
4984
+ Filter: "filter-button";
4985
+ ForgottenPassword: "forgottenPassword";
4986
+ GoToDashboard: "button-goToDashboard";
4987
+ GoToSignIn: "button-goToSignIn";
4988
+ MediaLibrary: "button-media-library";
4989
+ NewFolderPlus: "new-folder-plus";
4990
+ NewOrderStatus: "new-order-status-button";
4991
+ NewSmartFolderPlus: "new-smart-folder-plus-button";
4992
+ NewStep: "new-step-button";
4993
+ PermissionsInheritance: "permissions-inheritance-button";
4994
+ Recalculate: "button-recalculate";
4995
+ RecalculateAutomationsStatistics: "recalculate-automations-statistics-button";
4996
+ RecalculateEmailStatistics: "recalculate-email-statistics-button";
4997
+ Restore: "restore-button";
4998
+ SaveAutomation: "save-automation-button";
4999
+ SavePermissions: "save-permissions-button";
5000
+ SecondaryAction: "secondary-action";
5001
+ Select: "select-action";
5002
+ SelectDataToDelete: "select_data_to_delete";
5003
+ SelectEmail: "button-select-email";
5004
+ SelectExistingContentItem: "button-select-existing-content-item";
5005
+ SelectExistingIcon: "select-existing-icon-button";
5006
+ SelectPage: "select-page";
5007
+ SelectTag: "button-select-tag";
5008
+ SelectWebPage: "button-select-web-page";
5009
+ SettingsSave: "settings-save-button";
5010
+ SignIn: "signInButton";
5011
+ SignUp: "sign-up-button";
5012
+ StopUpload: "stop-upload-button";
5013
+ Submit_V1: "submit";
5014
+ Submit_V2: "submitButton";
5015
+ Submit_V3: "submit-button";
5016
+ SubmitForm: "submit-form-button";
5017
+ Toggle: "toggle-buttons";
5018
+ TreeItemExpand: "tree-item-expand";
5019
+ TreeItemMenu: "tree-item-menu-button";
5020
+ Unassign: "button-unassign";
5021
+ WebPageUrlCanonical: "web-page-url-canonical-button";
5022
+ WindowClose: "window-close";
5023
+ WindowMinimize: "window-minimize";
5024
+ WindowShow: "window-show";
5025
+ XpMenu: "xp-menu";
5026
+ };
5027
+ Callouts: {
5028
+ Default: "callout";
5029
+ InvalidStateValidation: "invalid-state-validation";
5030
+ NoStatisticsData: "no-statistics-data";
5031
+ TemplateLoaderErrorPane: "templateLoaderErrorPane";
5032
+ };
5033
+ Cards: {
5034
+ Register: "register-card";
5035
+ };
5036
+ Charts: {
5037
+ Funnel: "funnel-chart";
5038
+ };
5039
+ Checkboxes: {
5040
+ ApplyForSubItemsCheckbox: "ApplyForSubItemsCheckbox";
5041
+ GenerateWebsiteChannel: "GenerateWebsiteChannelCheckbox";
5042
+ IsContentDeliveryEnabledCheckbox: "IsContentDeliveryEnabledCheckbox";
5043
+ OrderStatusCustomerNotificationEnabledCheckbox: "OrderStatusCustomerNotificationEnabledCheckbox";
5044
+ OrderStatusInternalNotificationEnabledCheckbox: "OrderStatusInternalNotificationEnabledCheckbox";
5045
+ ProvideAdditionalParametersCheckbox: "ProvideAdditionalParametersCheckbox";
5046
+ VisibleCheckbox: "VisibleCheckbox";
5047
+ CodeName: "code-name-checkbox";
5048
+ InheritSettings: "inherit-settings";
5049
+ TableRow: "table-row-checkbox";
5050
+ };
5051
+ Containers: {
5052
+ PermissionSet: "permission-set";
5053
+ };
5054
+ ContentItemTiles: {
5055
+ ContentAsset: "content-asset";
5056
+ Preview: "content-item-tile-preview";
5057
+ };
5058
+ Dialogs: {
5059
+ ApprovalSettings: "Approval settings";
5060
+ UnsubscribeSettings: "Unsubscribe settings";
5061
+ Default: "dialog";
5062
+ AutomationProcessList: "automation-process-list-form-dialog";
5063
+ CloneSmartFolder: "clone-smart-folder-dialog";
5064
+ ContentItemDelete: "content-item-delete-dialog";
5065
+ CreateFolder: "create-folder-dialog";
5066
+ Delete: "delete-dialog";
5067
+ EditPageName: "edit-page-name-dialog";
5068
+ FoldersForm: "folders-form-dialog";
5069
+ IconSelector: "icon-selector-dialog";
5070
+ InsertDynamicText: "insert-dynamic-text-dialog";
5071
+ Move: "move-dialog";
5072
+ MoveFolder: "move-folder-dialog";
5073
+ Prompt: "prompt-dialog";
5074
+ RenameFolder: "rename-folder-dialog";
5075
+ RenameSmartFolder: "rename-smart-folder-dialog";
5076
+ SaveSmartFolder: "save-smart-folder-dialog";
5077
+ WebPageUrlEdit: "web-page-url-edit-dialog";
5078
+ };
5079
+ DropDownActionMenus: {
5080
+ Default: "action-menu";
5081
+ ContentItemActions: "content-item-menu-actions-menu";
5082
+ ContentItemDropdownActions: "content-item-menu-dropdown-actions-menu";
5083
+ OnClick: "dropdown";
5084
+ TreeItem: "tree-item-menu";
5085
+ WorkspaceSelector: "WorkspaceSelectorDropdownActionMenu";
5086
+ };
5087
+ FilterStatusIndicators: {
5088
+ Default: "filter-status-indicator";
5089
+ };
5090
+ Forms: {
5091
+ CreateNewStage: "create-new-stage-form";
5092
+ General: "General";
5093
+ SenderAndRecipients: "Sender and recipients";
5094
+ Default: "form";
5095
+ AutomationStep: "automation-step-form";
5096
+ Confirmation: "confirmation-form";
5097
+ ContentItemEdit: "content-item-edit-form";
5098
+ CreateEmail: "create-email-form";
5099
+ CreateFolderLanguageVariant: "create-folder-language-variant-form";
5100
+ CreateHeadlessItem: "create-headless-item-form";
5101
+ CreateWebPage: "create-web-page-form";
5102
+ DataErasure: "data-erasure-form";
5103
+ Edit: "edit-form";
5104
+ Filter: "filter-form";
5105
+ InsertDoubleOptInLink: "insert-double-opt-in-link-form";
5106
+ InsertDynamicText: "insert-dynamic-text-form";
5107
+ Logon: "logonForm";
5108
+ Mfa: "mfaForm";
5109
+ Properties: "properties-form";
5110
+ SmartFolder: "smart-folder-form";
5111
+ };
5112
+ Headlines: {
5113
+ PropertyName: "property-name";
5114
+ SidePanel: "side-panel-headline";
5115
+ Window: "window-headline";
5116
+ };
5117
+ Icons: {
5118
+ XpArrowSend: "xp-arrow-send";
5119
+ XpChevronDown: "xp-chevron-down";
5120
+ XpChevronUp: "xp-chevron-up";
5121
+ XpMagicEdit: "xp-magic-edit";
5122
+ XpTimesCircle: "xp-times-circle";
5123
+ XpTruckMoving: "xp-truck-moving";
5124
+ ItemLeadingIcon: "tree-item-leading-icon";
5125
+ SmartFolder: "smart-folder-label";
5126
+ };
5127
+ InfoCards: {
5128
+ DeliveryStatistics: "delivery-statistics-cards";
5129
+ EngagementStatistics: "engagement-statistics-cards";
5130
+ LatestActivityItem: "latest-activity-item";
5131
+ LatestAutomationProcessItem: "latest-automation-process-item";
5132
+ };
5133
+ Inputs: {
5134
+ AfterSubmitDisplayText: "AfterSubmitDisplayText";
5135
+ AfterTime: "AfterTime";
5136
+ AssetCount: "AssetCount";
5137
+ BackupText: "BackupText";
5138
+ Body: "Body";
5139
+ CallToActionDescription: "CallToActionDescription";
5140
+ ChannelDisplayName: "ChannelDisplayName";
5141
+ ContactGroupDescription: "ContactGroupDescription";
5142
+ ContactGroupDisplayName: "ContactGroupDisplayName";
5143
+ ContentTypeName: "ClassDisplayName";
5144
+ CustomDescription: "CustomDescription";
5145
+ DateFrom: "EventTime-date-from";
5146
+ DateTo: "data-testid=\"EventTime-date-to";
5147
+ DisplayName: "DisplayName";
5148
+ EmailChannelSenderDisplayName: "EmailChannelSenderDisplayName";
5149
+ EmailChannelSenderEmailAddress: "EmailChannelSenderEmailAddress";
5150
+ EmailName: "EmailName";
5151
+ EmailPlainText: "EmailPlainText";
5152
+ EmailPreviewText: "EmailPreviewText";
5153
+ EmailServiceDomain: "EmailChannelServiceDomain";
5154
+ EmailSubject: "EmailSubject";
5155
+ EmailTemplateDescription: "EmailTemplateDescription";
5156
+ EmailTemplateDisplayName: "EmailTemplateDisplayName";
5157
+ EmailTemplateSourceCode: "EmailTemplateCode";
5158
+ EventCode: "EventCode";
5159
+ EventItemCount: "EventItemCount";
5160
+ FieldCaption: "FieldCaption";
5161
+ FolderName: "FolderName";
5162
+ FoldersCount: "FoldersCount";
5163
+ FormattingCulture: "ContentLanguageCultureFormat";
5164
+ FormDisplayName: "FormDisplayName";
5165
+ HeadlessChannelPreviewUrl: "HeadlessChannelPreviewUrl";
5166
+ Kpi: "Kpi";
5167
+ LanguageCodeName: "ContentLanguageName";
5168
+ LanguageDisplayName: "ContentLanguageDisplayName";
5169
+ MaximumNumberOfWords: "MaximumNumberOfWords";
5170
+ ModuleDisplayName: "ResourceDisplayName";
5171
+ Name: "Name";
5172
+ NotificationDisplayName: "NotificationEmailDisplayName";
5173
+ NotificationEmailContent: "NotificationEmailContent";
5174
+ NotificationEmailSenderEmailAddress: "NotificationEmailSenderEmailAddress";
5175
+ NotificationEmailSubject: "NotificationEmailSubject";
5176
+ NotificationEmailTemplateDisplayName: "NotificationEmailTemplateDisplayName";
5177
+ NotificationEmailTemplateSourceCode: "NotificationEmailTemplateCode";
5178
+ ObjectType: "ObjectType";
5179
+ OrderStatusDisplayName: "OrderStatusDisplayName";
5180
+ PagesInFolderCount: "PagesInFolderCount";
5181
+ Password: "password";
5182
+ RegisterPassword: "register-password";
5183
+ RoleDescription: "RoleDescription";
5184
+ RoleDisplayName: "RoleDisplayName";
5185
+ ScheduledTime: "ScheduledTime";
5186
+ SendingDomain: "EmailChannelSendingDomain";
5187
+ Size: "Size";
5188
+ Source: "Source";
5189
+ StepDisplayName: "StepDisplayName";
5190
+ TargetAudience: "TargetAudience";
5191
+ TaxonomyDescription: "TaxonomyDescription";
5192
+ TaxonomyTitle: "TaxonomyTitle";
5193
+ TopicAndMainMessage: "TopicAndMainMessage";
5194
+ TrackedWebsiteCodeSnippet: "TrackedWebsiteCodeSnippet";
5195
+ TrackedWebsiteDescription: "TrackedWebsiteDescription";
5196
+ TrackedWebsiteDisplayName: "TrackedWebsiteDisplayName";
5197
+ TrackedWebsiteURL: "TrackedWebsiteURL";
5198
+ WebsiteChannelDomain: "WebsiteChannelDomain";
5199
+ WebsiteChannelId: "WebsiteChannelId";
5200
+ WebUrls: "WebUrls";
5201
+ WorkflowDisplayName_V1: "WorkflowDisplayName";
5202
+ WorkflowDisplayName_V2: "ContentWorkflowDisplayName";
5203
+ WorkflowStepDisplayName: "ContentWorkflowStepDisplayName";
5204
+ WorkspaceDisplayName: "WorkspaceDisplayName";
5205
+ WorkspaceName: "WorkspaceName";
5206
+ Assets: "Assets";
5207
+ CodeName: "code-name";
5208
+ CodeNameNamespace: "code-name-namespace";
5209
+ ConditionSearch: "condition-search";
5210
+ CurrentUrl: "CurrentUrl";
5211
+ EditPageName: "edit-page-name-input";
5212
+ Email: "Email";
5213
+ FieldName: "field-name";
5214
+ FolderDisplayName: "FolderDisplayName";
5215
+ NewUrl: "NewUrl";
5216
+ Passcode: "passcode";
5217
+ Search: "search-input";
5218
+ SettingsSearch: "settings-search-input";
5219
+ StandardMediaDimensionCodeName: "standard-media-dimension-code-name";
5220
+ StandardMediaDimensionDisplayName: "standard-media-dimension-display-name";
5221
+ StandardMediaDimensionHeight: "standard-media-dimension-height";
5222
+ StandardMediaDimensionWidth: "standard-media-dimension-width";
5223
+ Text: "Text";
5224
+ Url: "url-input-field";
5225
+ UrlSlug: "UrlSlug";
5226
+ UserName_V1: "userName";
5227
+ };
5228
+ LabelsWithTooltip: {
5229
+ Default: "label-with-tooltip";
5230
+ };
5231
+ Layouts: {
5232
+ AiraUnavailableContentError: "aira-unavailable-content-error";
5233
+ AiraUnavailableContentWarning: "aira-unavailable-content-warning";
5234
+ CmsContactHasBecomeMember: "cmscontacthasbecomemember";
5235
+ CmsContactHasSubmittedForm: "cmscontacthassubmittedform";
5236
+ ContactGroupRecipientListThankYouPage: "ContactGroupRecipientListThankYouPage";
5237
+ EditableAreaGeneral: "editable-area-general";
5238
+ TableCellConverted: "table-cell-Converted";
5239
+ TableCellDroppedOff: "table-cell-Dropped off";
5240
+ AdditionalActions: "additional-actions";
5241
+ AiraAssistantMessage: "aira-assistant-message";
5242
+ AiraUserMessage: "aira-user-message";
5243
+ AssetGrid: "asset-grid";
5244
+ AutomationNode: "automation-node";
5245
+ AutomationNodeStatisticsCount: "statistics-count";
5246
+ ContentItemPanelGrid: "content-item-panel-grid";
5247
+ ContentItemSelectorWrapper: "content-item-selector-wrapper";
5248
+ ContentTreeActions: "content-tree-actions";
5249
+ CreateEmailPage: "create-email-page";
5250
+ CreateWebPage: "create-web-page";
5251
+ DeliveryStatistics: "delivery-statistics";
5252
+ DialogFooter: "dialog-footer";
5253
+ EditPage: "edit-page";
5254
+ EmailBodySuggestionsList: "email-body-suggestions-list";
5255
+ EmailPanelContent: "email-panel-content";
5256
+ EmailPreview: "email-preview";
5257
+ EmailSubjectSuggestionsList: "email-subject-suggestions-list";
5258
+ EngagementStatistics: "engagement-statistics";
5259
+ Header: "Header";
5260
+ MassAssetUploadGrid: "mass-asset-upload-grid";
5261
+ NotificationEmailPreview: "notification-email-preview";
5262
+ NotificationEmailSubject: "notification-email-subject";
5263
+ PropertiesPage: "properties-page";
5264
+ RefinementHeader: "refinement-header";
5265
+ RteRefinementSuggestionsList: "rte-refinement-suggestions-list";
5266
+ SelectedEmails: "selected-emails";
5267
+ SidePanelFooter: "side-panel-footer";
5268
+ SmartFolderSelectorWrapper: "smart-folder-selector-wrapper";
5269
+ TableHeader: "table-header";
5270
+ WebPage: "web-page";
5271
+ };
5272
+ Links: {
5273
+ Page: "page-link";
5274
+ };
5275
+ MenuItems: {
5276
+ Default: "menu-item";
5277
+ NewFolder: "new-folder-menu-item";
5278
+ SelectLibrary: "select-library-item";
5279
+ TreeNodeAction: "action";
5280
+ };
5281
+ NotificationBars: {
5282
+ Alert: "notification-bar-alert-0";
5283
+ Info: "notification-bar-info-0";
5284
+ Warning: "notification-bar-warning-0";
5285
+ Default_V1: "notificationBar";
5286
+ Default_V2: "notification-bar";
5287
+ AiraUnavailableContentAlert: "AiraUnavailableContentAlertNotificationBar";
5288
+ AiraUnavailableContentWarning: "AiraUnavailableContentWarningNotificationBar";
5289
+ Workflow: "workflow-notification-bar";
5290
+ };
5291
+ RadioGroups: {
5292
+ EmailSendRadioOptions: "ImmediateSend";
5293
+ PublishNow: "PublishNow";
5294
+ SchedulePublish: "schedule-publish";
5295
+ Source: "Source";
5296
+ UnpublishNow: "UnpublishNow";
5297
+ };
5298
+ RichTextEditors: {
5299
+ Default: "rich-text-editor";
5300
+ };
5301
+ SchemaBarItems: {
5302
+ Default: "schema-bar-item";
5303
+ };
5304
+ SelectGroups: {
5305
+ Language: "LanguageSelector";
5306
+ LanguageSelectionDropdown: "LanguageSelectionDropdown";
5307
+ WorkspaceSelectionDropdown: "WorkspaceSelectionDropdown";
5308
+ };
5309
+ Selectors: {
5310
+ AllowedContentType: "allowed-content-type";
5311
+ AllowedContentTypes: "allowed-content-types";
5312
+ AllowedContentTypesInTheScope: "allowed-content-types-in-the-scope";
5313
+ ContentLanguage: "content-language";
5314
+ ContentType: "content-type";
5315
+ ContentTypeForMassUploadedItems: "content-type-for-mass-uploaded-items";
5316
+ EmailSender: "sender";
5317
+ EmailSendTo: "send-to";
5318
+ EmailTemplateProperties: "email-template";
5319
+ OrderStatusCustomerNotificationEmailConfiguration: "OrderStatusCustomerNotificationEmailConfiguration";
5320
+ PrimaryLanguage: "primary-language";
5321
+ Role: "role";
5322
+ ScopeWebPage: "ScopeWebPage";
5323
+ WorkflowStepIconClass: "ContentWorkflowStepIconClass";
5324
+ Asset: "asset-selector";
5325
+ Dropdown: "dropdown-selector";
5326
+ File: "file-uploader";
5327
+ FileInputUpdate: "file-input-update";
5328
+ FileInputUpload: "file-input-upload";
5329
+ IconValue: "icon-value";
5330
+ PermissionItem: "permission-item-selector";
5331
+ TagSelectedWebPage: "tag-selected-webpage";
5332
+ Workspace: "WorkspaceSelector";
5333
+ };
5334
+ Selects: {
5335
+ ChannelSize: "ChannelSize";
5336
+ ChannelType: "ChannelType";
5337
+ ClassContentTypeType: "ClassContentTypeType";
5338
+ CodeNameColumn: "CodeNameColumn";
5339
+ ContentType: "ContentType";
5340
+ DatabaseColumn: "DatabaseColumn";
5341
+ DataType: "DataType";
5342
+ DisplayNameColumn: "DisplayNameColumn";
5343
+ EmailContentFields: "email-content-fields";
5344
+ EmailPurpose: "EmailPurpose";
5345
+ EmailTemplate: "EmailTemplate";
5346
+ Form: "select-a-form";
5347
+ FormComponent: "FormComponent";
5348
+ MoveToWorkflowStep: "MoveToWorkflowStep";
5349
+ NotificationEmailEventType: "NotificationEmailEventType";
5350
+ NotificationTemplate: "notification-template";
5351
+ RecipientAttribute: "RecipientAttribute";
5352
+ Recipients: "recipients";
5353
+ SelectedEmailName: "table-cell-EmailInfo";
5354
+ Type: "type";
5355
+ UploadFieldName: "UploadFieldName";
5356
+ UserName_V2: "user-name";
5357
+ WorkflowRecurrenceType: "WorkflowRecurrenceType";
5358
+ ApplicationItem: "application-item-selector";
5359
+ EmailChannel: "select-email-channel";
5360
+ Library: "select-library";
5361
+ TemplateSelector: "template-selector";
5362
+ WebPage: "select-web-page";
5363
+ Workspace: "select-workspace";
5364
+ WorkspaceItem: "workspace-item-selector";
5365
+ };
5366
+ SideMenus: {
5367
+ Application: "application-menu";
5368
+ Item: "side-menu-item";
5369
+ Navigation: "navigation-side-menu";
5370
+ };
5371
+ SidePanels: {
5372
+ CombinedSelectorSelectExisting: "CombinedSelector.SelectExisting";
5373
+ Default: "side-panel";
5374
+ Account: "account-panel";
5375
+ ApplicationList: "application-list";
5376
+ Asset: "asset-panel";
5377
+ AutomationProcess: "automation-process-side-panel";
5378
+ Delete: "delete-dialog";
5379
+ MultiSourceAsset: "multi-source-asset-panel";
5380
+ SelectAsset: "Assets.SelectExisting";
5381
+ SelectEmail: "SelectEmail";
5382
+ SelectWebPage: "SelectWebPage";
5383
+ };
5384
+ SimpleStatuses: {
5385
+ Default: "status-card";
5386
+ MainVersion: "simple-main-version-status";
5387
+ };
5388
+ Snackbars: {
5389
+ Default: "snackbar";
5390
+ ItemMessage: "snackbar-item-message";
5391
+ };
5392
+ Tables: {
5393
+ Default: "table";
5394
+ CascadeDelete: "cascade-delete-table";
5395
+ CascadePublish: "cascade-publish-table";
5396
+ ContentSynchronization: "content-synchronization-table";
5397
+ Publish: "publish-table";
5398
+ Row: "table-row";
5399
+ WebPageUrls: "web-page-urls-list-table";
5400
+ };
5401
+ Tags: {
5402
+ Default: "tag";
5403
+ };
5404
+ TextAreas: {
5405
+ SearchedData: "searched_data";
5406
+ };
5407
+ TreeViews: {
5408
+ Default: "tree";
5409
+ AssetFolders: "asset-folders-tree";
5410
+ Content: "content-tree";
5411
+ ContentPreview: "content-tree-preview";
5412
+ DeletionPreview: "deletion-tree-preview";
5413
+ EmptyCell: "tree-item-empty-cell";
5414
+ Item: "tree-item";
5415
+ ItemChildren: "tree-item-children";
5416
+ ItemRow: "tree-item-row";
5417
+ ItemTitle: "tree-item-title";
5418
+ Taxonomy: "taxonomy-tree";
5419
+ Template: "tree-template-treeview";
5420
+ };
5421
+ VerticalMenus: {
5422
+ Item: "vertical-menu-item";
5423
+ SideNavigation: "side-navigation-vertical-menu";
5424
+ };
5425
+ VerticalTabs: {
5426
+ Default: "vertical-tab";
5427
+ };
5428
+ ViewMenus: {
5429
+ Item: "view-menu-item";
5430
+ Navigation: "navigation-view-menu";
5431
+ };
5432
+ };
5126
5433
 
5127
5434
  export declare const TextArea: React_2.ForwardRefExoticComponent<TextAreaProps & React_2.RefAttributes<HTMLDivElement>>;
5128
5435
 
@@ -5286,7 +5593,7 @@ declare interface ToggleButtonBaseProps {
5286
5593
  readonly className?: string;
5287
5594
  readonly isSelected: boolean;
5288
5595
  readonly type: ToggleButtonBaseTypes;
5289
- readonly dataTestId?: string;
5596
+ readonly dataTestId?: TestId;
5290
5597
  }
5291
5598
 
5292
5599
  declare enum ToggleButtonBaseTypes {
@@ -5535,11 +5842,11 @@ export declare interface TreeNodeMenuActionsProps {
5535
5842
  /**
5536
5843
  * Test-id attribute of the menu.
5537
5844
  */
5538
- readonly dataTestIdMenu?: string;
5845
+ readonly dataTestIdMenu?: TestId;
5539
5846
  /**
5540
5847
  * Test-id attribute of the menus button.
5541
5848
  */
5542
- readonly dataTestIdMenuButton?: string;
5849
+ readonly dataTestIdMenuButton?: TestId;
5543
5850
  }
5544
5851
 
5545
5852
  export declare interface TreeNodeMenuProps<TActionType extends TreeNodeAction> {
@@ -5639,11 +5946,18 @@ export declare interface TreeViewProps extends BaseTreeViewProps {
5639
5946
  readonly selectedIdentifier?: TreeNodeId;
5640
5947
  }
5641
5948
 
5949
+ /**
5950
+ * Represents a culture code used for localization in the UI.
5951
+ */
5952
+ export declare type UICultureCode = string & {
5953
+ readonly __type: 'UICultureCode';
5954
+ };
5955
+
5642
5956
  export declare interface UITestProps {
5643
5957
  /**
5644
5958
  * Test id data attribute.
5645
5959
  */
5646
- readonly dataTestId?: string;
5960
+ readonly dataTestId?: TestId;
5647
5961
  }
5648
5962
 
5649
5963
  /**