@kentico/xperience-admin-components 30.6.2 → 30.7.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 +594 -301
- package/dist/{entry.kxh.05234f2133861b5dd7dd.js → entry.js} +10 -10
- package/package.json +8 -77
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?:
|
|
596
|
+
readonly dataTestIdNode?: TestId;
|
|
597
597
|
/**
|
|
598
598
|
* Test-id of the row of the node.
|
|
599
599
|
*/
|
|
600
|
-
readonly dataTestIdNodeRow?:
|
|
600
|
+
readonly dataTestIdNodeRow?: TestId;
|
|
601
601
|
/**
|
|
602
602
|
* Test-id attribute of the node's children.
|
|
603
603
|
*/
|
|
604
|
-
readonly dataTestIdNodeChildren?:
|
|
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?:
|
|
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):
|
|
1724
|
+
export declare function getDataTestId(input: string): TestId;
|
|
1721
1725
|
|
|
1722
|
-
export declare function getDataTestId(input: string | undefined, fallback: 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?:
|
|
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?:
|
|
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?:
|
|
3568
|
+
readonly dataTestId?: TestId;
|
|
3565
3569
|
/**
|
|
3566
3570
|
* Indicates if the radiobutton is disabled.
|
|
3567
3571
|
*/
|
|
@@ -4820,9 +4824,9 @@ export declare interface TagProps {
|
|
|
4820
4824
|
readonly isDragging?: boolean;
|
|
4821
4825
|
readonly leadingButton?: React_2.ReactElement<HTMLButtonElement>;
|
|
4822
4826
|
readonly mode?: TagMode;
|
|
4823
|
-
readonly dataTestId?:
|
|
4824
|
-
readonly dataTestIdTagButton?:
|
|
4825
|
-
readonly dataTestIdRemoveButton?:
|
|
4827
|
+
readonly dataTestId?: TestId;
|
|
4828
|
+
readonly dataTestIdTagButton?: TestId;
|
|
4829
|
+
readonly dataTestIdRemoveButton?: TestId;
|
|
4826
4830
|
}
|
|
4827
4831
|
|
|
4828
4832
|
export declare const TagTableCellComponent: ({ color, label, tooltipText }: TagTableCellComponentProps) => JSX_2.Element;
|
|
@@ -4834,295 +4838,584 @@ export declare interface TagTableCellComponentProps {
|
|
|
4834
4838
|
}
|
|
4835
4839
|
|
|
4836
4840
|
/**
|
|
4841
|
+
* Unified test ID map used in both components and tests.
|
|
4842
|
+
* Combines UI-defined IDs and test-only generated ones.
|
|
4843
|
+
*
|
|
4837
4844
|
* Intended for internal use only.
|
|
4838
4845
|
* Shared `data-testid` values used across tests and UI.
|
|
4839
4846
|
* May change over time.
|
|
4840
4847
|
*/
|
|
4841
|
-
export declare
|
|
4842
|
-
|
|
4843
|
-
|
|
4844
|
-
|
|
4845
|
-
|
|
4846
|
-
|
|
4847
|
-
|
|
4848
|
-
|
|
4849
|
-
|
|
4850
|
-
|
|
4851
|
-
|
|
4852
|
-
|
|
4853
|
-
|
|
4854
|
-
|
|
4855
|
-
|
|
4856
|
-
|
|
4857
|
-
|
|
4858
|
-
|
|
4859
|
-
|
|
4860
|
-
|
|
4861
|
-
|
|
4862
|
-
|
|
4863
|
-
|
|
4864
|
-
|
|
4865
|
-
|
|
4866
|
-
|
|
4867
|
-
|
|
4868
|
-
|
|
4869
|
-
|
|
4870
|
-
|
|
4871
|
-
|
|
4872
|
-
|
|
4873
|
-
|
|
4874
|
-
|
|
4875
|
-
|
|
4876
|
-
|
|
4877
|
-
|
|
4878
|
-
|
|
4879
|
-
|
|
4880
|
-
|
|
4881
|
-
|
|
4882
|
-
|
|
4883
|
-
|
|
4884
|
-
|
|
4885
|
-
|
|
4886
|
-
|
|
4887
|
-
|
|
4888
|
-
|
|
4889
|
-
|
|
4890
|
-
|
|
4891
|
-
|
|
4892
|
-
|
|
4893
|
-
|
|
4894
|
-
|
|
4895
|
-
|
|
4896
|
-
|
|
4897
|
-
|
|
4898
|
-
|
|
4899
|
-
|
|
4900
|
-
|
|
4901
|
-
|
|
4902
|
-
|
|
4903
|
-
|
|
4904
|
-
|
|
4905
|
-
|
|
4906
|
-
|
|
4907
|
-
|
|
4908
|
-
|
|
4909
|
-
|
|
4910
|
-
|
|
4911
|
-
|
|
4912
|
-
|
|
4913
|
-
|
|
4914
|
-
|
|
4915
|
-
|
|
4916
|
-
|
|
4917
|
-
|
|
4918
|
-
|
|
4919
|
-
|
|
4920
|
-
|
|
4921
|
-
|
|
4922
|
-
|
|
4923
|
-
|
|
4924
|
-
|
|
4925
|
-
|
|
4926
|
-
|
|
4927
|
-
|
|
4928
|
-
|
|
4929
|
-
|
|
4930
|
-
|
|
4931
|
-
|
|
4932
|
-
|
|
4933
|
-
|
|
4934
|
-
|
|
4935
|
-
|
|
4936
|
-
|
|
4937
|
-
|
|
4938
|
-
|
|
4939
|
-
|
|
4940
|
-
|
|
4941
|
-
|
|
4942
|
-
|
|
4943
|
-
|
|
4944
|
-
|
|
4945
|
-
|
|
4946
|
-
|
|
4947
|
-
|
|
4948
|
-
|
|
4949
|
-
|
|
4950
|
-
|
|
4951
|
-
|
|
4952
|
-
|
|
4953
|
-
|
|
4954
|
-
|
|
4955
|
-
|
|
4956
|
-
|
|
4957
|
-
|
|
4958
|
-
|
|
4959
|
-
|
|
4960
|
-
|
|
4961
|
-
|
|
4962
|
-
|
|
4963
|
-
|
|
4964
|
-
|
|
4965
|
-
|
|
4966
|
-
|
|
4967
|
-
|
|
4968
|
-
|
|
4969
|
-
|
|
4970
|
-
|
|
4971
|
-
|
|
4972
|
-
|
|
4973
|
-
|
|
4974
|
-
|
|
4975
|
-
|
|
4976
|
-
|
|
4977
|
-
|
|
4978
|
-
|
|
4979
|
-
|
|
4980
|
-
|
|
4981
|
-
|
|
4982
|
-
|
|
4983
|
-
|
|
4984
|
-
|
|
4985
|
-
|
|
4986
|
-
|
|
4987
|
-
|
|
4988
|
-
|
|
4989
|
-
|
|
4990
|
-
|
|
4991
|
-
|
|
4992
|
-
|
|
4993
|
-
|
|
4994
|
-
|
|
4995
|
-
|
|
4996
|
-
|
|
4997
|
-
|
|
4998
|
-
|
|
4999
|
-
|
|
5000
|
-
|
|
5001
|
-
|
|
5002
|
-
|
|
5003
|
-
|
|
5004
|
-
|
|
5005
|
-
|
|
5006
|
-
|
|
5007
|
-
|
|
5008
|
-
|
|
5009
|
-
|
|
5010
|
-
|
|
5011
|
-
|
|
5012
|
-
|
|
5013
|
-
|
|
5014
|
-
|
|
5015
|
-
|
|
5016
|
-
|
|
5017
|
-
|
|
5018
|
-
|
|
5019
|
-
|
|
5020
|
-
|
|
5021
|
-
|
|
5022
|
-
|
|
5023
|
-
|
|
5024
|
-
|
|
5025
|
-
|
|
5026
|
-
|
|
5027
|
-
|
|
5028
|
-
|
|
5029
|
-
|
|
5030
|
-
|
|
5031
|
-
|
|
5032
|
-
|
|
5033
|
-
|
|
5034
|
-
|
|
5035
|
-
|
|
5036
|
-
|
|
5037
|
-
|
|
5038
|
-
|
|
5039
|
-
|
|
5040
|
-
|
|
5041
|
-
|
|
5042
|
-
|
|
5043
|
-
|
|
5044
|
-
|
|
5045
|
-
|
|
5046
|
-
|
|
5047
|
-
|
|
5048
|
-
|
|
5049
|
-
|
|
5050
|
-
|
|
5051
|
-
|
|
5052
|
-
|
|
5053
|
-
|
|
5054
|
-
|
|
5055
|
-
|
|
5056
|
-
|
|
5057
|
-
|
|
5058
|
-
|
|
5059
|
-
|
|
5060
|
-
|
|
5061
|
-
|
|
5062
|
-
|
|
5063
|
-
|
|
5064
|
-
|
|
5065
|
-
|
|
5066
|
-
|
|
5067
|
-
|
|
5068
|
-
|
|
5069
|
-
|
|
5070
|
-
|
|
5071
|
-
|
|
5072
|
-
|
|
5073
|
-
|
|
5074
|
-
|
|
5075
|
-
|
|
5076
|
-
|
|
5077
|
-
|
|
5078
|
-
|
|
5079
|
-
|
|
5080
|
-
|
|
5081
|
-
|
|
5082
|
-
|
|
5083
|
-
|
|
5084
|
-
|
|
5085
|
-
|
|
5086
|
-
|
|
5087
|
-
|
|
5088
|
-
|
|
5089
|
-
|
|
5090
|
-
|
|
5091
|
-
|
|
5092
|
-
|
|
5093
|
-
|
|
5094
|
-
|
|
5095
|
-
|
|
5096
|
-
|
|
5097
|
-
|
|
5098
|
-
|
|
5099
|
-
|
|
5100
|
-
|
|
5101
|
-
|
|
5102
|
-
|
|
5103
|
-
|
|
5104
|
-
|
|
5105
|
-
|
|
5106
|
-
|
|
5107
|
-
|
|
5108
|
-
|
|
5109
|
-
|
|
5110
|
-
|
|
5111
|
-
|
|
5112
|
-
|
|
5113
|
-
|
|
5114
|
-
|
|
5115
|
-
|
|
5116
|
-
|
|
5117
|
-
|
|
5118
|
-
|
|
5119
|
-
|
|
5120
|
-
|
|
5121
|
-
|
|
5122
|
-
|
|
5123
|
-
|
|
5124
|
-
|
|
5125
|
-
|
|
4848
|
+
export declare type TestId = string & {
|
|
4849
|
+
readonly __type: 'TestId';
|
|
4850
|
+
};
|
|
4851
|
+
|
|
4852
|
+
export declare const TestIds: DeepTestIdMapping<typeof testIds>;
|
|
4853
|
+
|
|
4854
|
+
declare const testIds: {
|
|
4855
|
+
ActionLists: {
|
|
4856
|
+
EmailConfiguration: "email-configuration-menu-actions";
|
|
4857
|
+
HeadlessItemMenu: "headless-item-menu-actions";
|
|
4858
|
+
ListingHeader: "listing-header-actions";
|
|
4859
|
+
PageMenu: "page-menu-actions";
|
|
4860
|
+
};
|
|
4861
|
+
ActionTiles: {
|
|
4862
|
+
Default: "action-tile";
|
|
4863
|
+
Item: "item-tile";
|
|
4864
|
+
};
|
|
4865
|
+
ApplicationListItems: {
|
|
4866
|
+
Default: "application-list-item";
|
|
4867
|
+
};
|
|
4868
|
+
ApplicationTiles: {
|
|
4869
|
+
Default: "application-tile";
|
|
4870
|
+
};
|
|
4871
|
+
AssetTiles: {
|
|
4872
|
+
Default: "asset-tile";
|
|
4873
|
+
FileName: "file-name";
|
|
4874
|
+
Hidden: "asset-tile-hidden";
|
|
4875
|
+
ImagePreview: "image-preview";
|
|
4876
|
+
};
|
|
4877
|
+
Banners: {
|
|
4878
|
+
Sticky: "sticky-banner";
|
|
4879
|
+
};
|
|
4880
|
+
BarItems: {
|
|
4881
|
+
Default: "bar-item";
|
|
4882
|
+
StepName: "step-name";
|
|
4883
|
+
};
|
|
4884
|
+
Breadcrumbs: {
|
|
4885
|
+
Default: "breadcrumbs";
|
|
4886
|
+
Application: "breadcrumb-application";
|
|
4887
|
+
Home: "breadcrumb-home";
|
|
4888
|
+
Status: "breadcrumbs-status";
|
|
4889
|
+
};
|
|
4890
|
+
Buttons: {
|
|
4891
|
+
Apply: "button-apply";
|
|
4892
|
+
AutomationAddStep: "rf__node-endPlaceholder-1";
|
|
4893
|
+
AutomationAddTrigger: "rf__node-startPlaceholder";
|
|
4894
|
+
ChangeWorkflowStep: "content-item-menu-split-button-changeworkflowstep";
|
|
4895
|
+
ClearCache: "clear-cache-button";
|
|
4896
|
+
ContactIsMember: "cmscontactismember";
|
|
4897
|
+
ContentItemActionCancelScheduledPublish: "content-item-action-menu-item-cancelscheduledpublish";
|
|
4898
|
+
ContentItemActionCancelScheduledUnpublish: "content-item-action-menu-item-cancelscheduledunpublish";
|
|
4899
|
+
ContentItemActionConfirmFirstSelection: "content-item-action-button-confirmfirstselection";
|
|
4900
|
+
ContentItemActionConfirmSelection: "content-item-action-button-confirmselection";
|
|
4901
|
+
ContentItemActionContinue: "content-item-action-button-continue";
|
|
4902
|
+
ContentItemActionCreate: "content-item-action-button-create";
|
|
4903
|
+
ContentItemActionDiscard: "content-item-action-button-discard";
|
|
4904
|
+
ContentItemActionMenuItemClone: "content-item-action-menu-item-clone";
|
|
4905
|
+
ContentItemActionMenuItemDelete: "content-item-action-menu-item-delete";
|
|
4906
|
+
ContentItemActionMenuItemReschedule: "content-item-action-menu-item-reschedule";
|
|
4907
|
+
ContentItemActionMenuItemUnpublish: "content-item-action-menu-item-unpublish";
|
|
4908
|
+
ContentItemActionPublish: "content-item-action-button-publish";
|
|
4909
|
+
ContentItemActionRevertToPublished: "content-item-action-menu-item-discard";
|
|
4910
|
+
ContentItemActionSave: "content-item-action-button-save";
|
|
4911
|
+
ContentItemEditScheduledPage: "content-item-menu-split-button-cancelscheduledpublishandedit";
|
|
4912
|
+
ContentItemMenuSplitContinue: "content-item-menu-split-button-continue";
|
|
4913
|
+
ContentItemMenuSplitCreateNewVersion: "content-item-menu-split-button-createnewversion";
|
|
4914
|
+
ContentItemMenuSplitEdit: "content-item-menu-split-button-edit";
|
|
4915
|
+
ContentItemMenuSplitEditRegular: "content-item-menu-split-button-editregular";
|
|
4916
|
+
ContentItemMenuSplitPublish: "content-item-menu-split-button-publish";
|
|
4917
|
+
ContentItemMenuSplitReviewAndSend: "content-item-menu-split-button-reviewandsend";
|
|
4918
|
+
ContentItemRevertToPublished: "content-item-action-menu-item-discardchanges";
|
|
4919
|
+
Create_V1: "button-create";
|
|
4920
|
+
Create_V2: "Create";
|
|
4921
|
+
CreateFolder_V2: "createfolder-action";
|
|
4922
|
+
CreateNewStage: "create-new-stage-button";
|
|
4923
|
+
Delete_V3: "button-Delete";
|
|
4924
|
+
Delete_V4: "delete-action";
|
|
4925
|
+
DeleteFolder: "deletefolder-action";
|
|
4926
|
+
EditRecipientListBasicData: "edit-recipient-list-basic-data-button";
|
|
4927
|
+
EmailContentFieldsDropdown: "email-content-fields-dropdown-indicator";
|
|
4928
|
+
EnableContentDelivery: "enablecontentdelivery-action";
|
|
4929
|
+
GenerateChannels: "generate-channels-button";
|
|
4930
|
+
GenerateEmailContent: "generate-email-content-button";
|
|
4931
|
+
GenerateEmailSubjectBasedOnEmailContent: "generate-email-subject-based-on-email-content-button";
|
|
4932
|
+
GenerateWebsiteChannelData: "generate-website-channel-data-button";
|
|
4933
|
+
InsertDynamicText: "insertDynamicTextButton";
|
|
4934
|
+
MoveFolder: "movefolder-action";
|
|
4935
|
+
NestedActionMenuItemMassUpload: "nested-action-menu-item-mass-upload";
|
|
4936
|
+
OpenBindingSidePanel: "button-open-binding-sidepanel";
|
|
4937
|
+
RemoveBinding: "button-RemoveBinding";
|
|
4938
|
+
RenameFolder: "renamefolder-action";
|
|
4939
|
+
RichTextEditorRefinements: "rich-text-editor-refinements-button";
|
|
4940
|
+
Save: "button-save";
|
|
4941
|
+
WebsiteChannel: "website-channel";
|
|
4942
|
+
Default: "button";
|
|
4943
|
+
ActionMenu: "button-action-menu";
|
|
4944
|
+
Add: "button-add";
|
|
4945
|
+
AddAnotherCondition: "add-another-condition-button";
|
|
4946
|
+
AddCondition: "add-condition";
|
|
4947
|
+
AddConditionGroup: "add-condition-group";
|
|
4948
|
+
AddRoles: "add-roles-button";
|
|
4949
|
+
Adjust: "adjust-button";
|
|
4950
|
+
Aira: "AiraButton";
|
|
4951
|
+
AiraClose: "aira-close-button";
|
|
4952
|
+
AiraNewConversation: "aira-new-conversation-button";
|
|
4953
|
+
AllContentItemsButton: "all-content-items-button";
|
|
4954
|
+
Avatar: "AvatarButton";
|
|
4955
|
+
Cancel_V1: "cancel-action";
|
|
4956
|
+
Cancel_V2: "cancel-button";
|
|
4957
|
+
Chevron: "chevron";
|
|
4958
|
+
ClearAll: "clear-all-button";
|
|
4959
|
+
ClearSearch: "clear-search-button";
|
|
4960
|
+
Close: "close-button";
|
|
4961
|
+
CloseSidePanel_V1: "close-panel-button";
|
|
4962
|
+
CloseSidePanel_V2: "side-panel-close";
|
|
4963
|
+
Confirm: "confirm-action";
|
|
4964
|
+
CreateAutomationProcess: "button-create-automation-process";
|
|
4965
|
+
CreateFolder_V1: "create-folder-button";
|
|
4966
|
+
CreateNewContentItem: "button-create-new-content-item";
|
|
4967
|
+
CreatePage: "create-page-button";
|
|
4968
|
+
Delete_V1: "delete-button";
|
|
4969
|
+
Delete_V2: "button-delete";
|
|
4970
|
+
DeleteConditionButton: "delete-condition-button";
|
|
4971
|
+
DialogFooterAction: "dialog-footer-action";
|
|
4972
|
+
Draggable: "draggable-button";
|
|
4973
|
+
Edit: "button-edit";
|
|
4974
|
+
EditableHeader: "editable-header-button";
|
|
4975
|
+
EditContentItem: "edit-content-item-button";
|
|
4976
|
+
EnableDisableProcess: "enable-disable-process-button";
|
|
4977
|
+
Expand: "expand-button";
|
|
4978
|
+
ExpandSplit: "expand-split-button";
|
|
4979
|
+
Filter: "filter-button";
|
|
4980
|
+
ForgottenPassword: "forgottenPassword";
|
|
4981
|
+
GoToDashboard: "button-goToDashboard";
|
|
4982
|
+
GoToSignIn: "button-goToSignIn";
|
|
4983
|
+
MediaLibrary: "button-media-library";
|
|
4984
|
+
NewFolderPlus: "new-folder-plus";
|
|
4985
|
+
NewOrderStatus: "new-order-status-button";
|
|
4986
|
+
NewSmartFolderPlus: "new-smart-folder-plus-button";
|
|
4987
|
+
NewStep: "new-step-button";
|
|
4988
|
+
PermissionsInheritance: "permissions-inheritance-button";
|
|
4989
|
+
Recalculate: "button-recalculate";
|
|
4990
|
+
RecalculateAutomationsStatistics: "recalculate-automations-statistics-button";
|
|
4991
|
+
RecalculateEmailStatistics: "recalculate-email-statistics-button";
|
|
4992
|
+
Restore: "restore-button";
|
|
4993
|
+
SaveAutomation: "save-automation-button";
|
|
4994
|
+
SavePermissions: "save-permissions-button";
|
|
4995
|
+
SecondaryAction: "secondary-action";
|
|
4996
|
+
Select: "select-action";
|
|
4997
|
+
SelectDataToDelete: "select_data_to_delete";
|
|
4998
|
+
SelectEmail: "button-select-email";
|
|
4999
|
+
SelectExistingContentItem: "button-select-existing-content-item";
|
|
5000
|
+
SelectExistingIcon: "select-existing-icon-button";
|
|
5001
|
+
SelectPage: "select-page";
|
|
5002
|
+
SelectTag: "button-select-tag";
|
|
5003
|
+
SelectWebPage: "button-select-web-page";
|
|
5004
|
+
SettingsSave: "settings-save-button";
|
|
5005
|
+
SignIn: "signInButton";
|
|
5006
|
+
SignUp: "sign-up-button";
|
|
5007
|
+
StopUpload: "stop-upload-button";
|
|
5008
|
+
Submit_V1: "submit";
|
|
5009
|
+
Submit_V2: "submitButton";
|
|
5010
|
+
Submit_V3: "submit-button";
|
|
5011
|
+
SubmitForm: "submit-form-button";
|
|
5012
|
+
Toggle: "toggle-buttons";
|
|
5013
|
+
TreeItemExpand: "tree-item-expand";
|
|
5014
|
+
TreeItemMenu: "tree-item-menu-button";
|
|
5015
|
+
Unassign: "button-unassign";
|
|
5016
|
+
WindowClose: "window-close";
|
|
5017
|
+
WindowMinimize: "window-minimize";
|
|
5018
|
+
WindowShow: "window-show";
|
|
5019
|
+
XpMenu: "xp-menu";
|
|
5020
|
+
};
|
|
5021
|
+
Callouts: {
|
|
5022
|
+
Default: "callout";
|
|
5023
|
+
InvalidStateValidation: "invalid-state-validation";
|
|
5024
|
+
NoStatisticsData: "no-statistics-data";
|
|
5025
|
+
TemplateLoaderErrorPane: "templateLoaderErrorPane";
|
|
5026
|
+
};
|
|
5027
|
+
Cards: {
|
|
5028
|
+
Register: "register-card";
|
|
5029
|
+
};
|
|
5030
|
+
Charts: {
|
|
5031
|
+
Funnel: "funnel-chart";
|
|
5032
|
+
};
|
|
5033
|
+
Checkboxes: {
|
|
5034
|
+
ApplyForSubItemsCheckbox: "ApplyForSubItemsCheckbox";
|
|
5035
|
+
GenerateWebsiteChannel: "GenerateWebsiteChannelCheckbox";
|
|
5036
|
+
IsContentDeliveryEnabledCheckbox: "IsContentDeliveryEnabledCheckbox";
|
|
5037
|
+
OrderStatusInternalNotificationEnabledCheckbox: "OrderStatusInternalNotificationEnabledCheckbox";
|
|
5038
|
+
ProvideAdditionalParametersCheckbox: "ProvideAdditionalParametersCheckbox";
|
|
5039
|
+
VisibleCheckbox: "VisibleCheckbox";
|
|
5040
|
+
CodeName: "code-name-checkbox";
|
|
5041
|
+
InheritSettings: "inherit-settings";
|
|
5042
|
+
TableRow: "table-row-checkbox";
|
|
5043
|
+
};
|
|
5044
|
+
Containers: {
|
|
5045
|
+
PermissionSet: "permission-set";
|
|
5046
|
+
};
|
|
5047
|
+
ContentItemTiles: {
|
|
5048
|
+
ContentAsset: "content-asset";
|
|
5049
|
+
Preview: "content-item-tile-preview";
|
|
5050
|
+
};
|
|
5051
|
+
Dialogs: {
|
|
5052
|
+
ApprovalSettings: "Approval settings";
|
|
5053
|
+
UnsubscribeSettings: "Unsubscribe settings";
|
|
5054
|
+
Default: "dialog";
|
|
5055
|
+
AutomationProcessList: "automation-process-list-form-dialog";
|
|
5056
|
+
CloneSmartFolder: "clone-smart-folder-dialog";
|
|
5057
|
+
ContentItemDelete: "content-item-delete-dialog";
|
|
5058
|
+
CreateFolder: "create-folder-dialog";
|
|
5059
|
+
Delete: "delete-dialog";
|
|
5060
|
+
EditPageName: "edit-page-name-dialog";
|
|
5061
|
+
FoldersForm: "folders-form-dialog";
|
|
5062
|
+
IconSelector: "icon-selector-dialog";
|
|
5063
|
+
InsertDynamicText: "insert-dynamic-text-dialog";
|
|
5064
|
+
Move: "move-dialog";
|
|
5065
|
+
MoveFolder: "move-folder-dialog";
|
|
5066
|
+
Prompt: "prompt-dialog";
|
|
5067
|
+
RenameFolder: "rename-folder-dialog";
|
|
5068
|
+
RenameSmartFolder: "rename-smart-folder-dialog";
|
|
5069
|
+
SaveSmartFolder: "save-smart-folder-dialog";
|
|
5070
|
+
};
|
|
5071
|
+
DropDownActionMenus: {
|
|
5072
|
+
Default: "action-menu";
|
|
5073
|
+
ContentItemActions: "content-item-menu-actions-menu";
|
|
5074
|
+
ContentItemDropdownActions: "content-item-menu-dropdown-actions-menu";
|
|
5075
|
+
OnClick: "dropdown";
|
|
5076
|
+
TreeItem: "tree-item-menu";
|
|
5077
|
+
WorkspaceSelector: "WorkspaceSelectorDropdownActionMenu";
|
|
5078
|
+
};
|
|
5079
|
+
FilterStatusIndicators: {
|
|
5080
|
+
Default: "filter-status-indicator";
|
|
5081
|
+
};
|
|
5082
|
+
Forms: {
|
|
5083
|
+
CreateNewStage: "create-new-stage-form";
|
|
5084
|
+
General: "General";
|
|
5085
|
+
SenderAndRecipients: "Sender and recipients";
|
|
5086
|
+
Default: "form";
|
|
5087
|
+
AutomationStep: "automation-step-form";
|
|
5088
|
+
Confirmation: "confirmation-form";
|
|
5089
|
+
ContentItemEdit: "content-item-edit-form";
|
|
5090
|
+
CreateEmail: "create-email-form";
|
|
5091
|
+
CreateFolderLanguageVariant: "create-folder-language-variant-form";
|
|
5092
|
+
CreateHeadlessItem: "create-headless-item-form";
|
|
5093
|
+
CreateWebPage: "create-web-page-form";
|
|
5094
|
+
DataErasure: "data-erasure-form";
|
|
5095
|
+
Edit: "edit-form";
|
|
5096
|
+
Filter: "filter-form";
|
|
5097
|
+
InsertDoubleOptInLink: "insert-double-opt-in-link-form";
|
|
5098
|
+
InsertDynamicText: "insert-dynamic-text-form";
|
|
5099
|
+
Logon: "logonForm";
|
|
5100
|
+
Mfa: "mfaForm";
|
|
5101
|
+
Properties: "properties-form";
|
|
5102
|
+
SmartFolder: "smart-folder-form";
|
|
5103
|
+
};
|
|
5104
|
+
Headlines: {
|
|
5105
|
+
PropertyName: "property-name";
|
|
5106
|
+
SidePanel: "side-panel-headline";
|
|
5107
|
+
Window: "window-headline";
|
|
5108
|
+
};
|
|
5109
|
+
Icons: {
|
|
5110
|
+
XpArrowSend: "xp-arrow-send";
|
|
5111
|
+
XpChevronDown: "xp-chevron-down";
|
|
5112
|
+
XpChevronUp: "xp-chevron-up";
|
|
5113
|
+
XpMagicEdit: "xp-magic-edit";
|
|
5114
|
+
XpTimesCircle: "xp-times-circle";
|
|
5115
|
+
XpTruckMoving: "xp-truck-moving";
|
|
5116
|
+
ItemLeadingIcon: "tree-item-leading-icon";
|
|
5117
|
+
SmartFolder: "smart-folder-label";
|
|
5118
|
+
};
|
|
5119
|
+
InfoCards: {
|
|
5120
|
+
DeliveryStatistics: "delivery-statistics-cards";
|
|
5121
|
+
EngagementStatistics: "engagement-statistics-cards";
|
|
5122
|
+
LatestActivityItem: "latest-activity-item";
|
|
5123
|
+
LatestAutomationProcessItem: "latest-automation-process-item";
|
|
5124
|
+
};
|
|
5125
|
+
Inputs: {
|
|
5126
|
+
AfterSubmitDisplayText: "AfterSubmitDisplayText";
|
|
5127
|
+
AfterTime: "AfterTime";
|
|
5128
|
+
AssetCount: "AssetCount";
|
|
5129
|
+
BackupText: "BackupText";
|
|
5130
|
+
Body: "Body";
|
|
5131
|
+
CallToActionDescription: "CallToActionDescription";
|
|
5132
|
+
ChannelDisplayName: "ChannelDisplayName";
|
|
5133
|
+
ContactGroupDescription: "ContactGroupDescription";
|
|
5134
|
+
ContactGroupDisplayName: "ContactGroupDisplayName";
|
|
5135
|
+
ContentTypeName: "ClassDisplayName";
|
|
5136
|
+
CustomDescription: "CustomDescription";
|
|
5137
|
+
DateFrom: "EventTime-date-from";
|
|
5138
|
+
DateTo: "data-testid=\"EventTime-date-to";
|
|
5139
|
+
DisplayName: "DisplayName";
|
|
5140
|
+
EmailChannelSenderDisplayName: "EmailChannelSenderDisplayName";
|
|
5141
|
+
EmailChannelSenderEmailAddress: "EmailChannelSenderEmailAddress";
|
|
5142
|
+
EmailName: "EmailName";
|
|
5143
|
+
EmailPlainText: "EmailPlainText";
|
|
5144
|
+
EmailPreviewText: "EmailPreviewText";
|
|
5145
|
+
EmailServiceDomain: "EmailChannelServiceDomain";
|
|
5146
|
+
EmailSubject: "EmailSubject";
|
|
5147
|
+
EmailTemplateDescription: "EmailTemplateDescription";
|
|
5148
|
+
EmailTemplateDisplayName: "EmailTemplateDisplayName";
|
|
5149
|
+
EmailTemplateSourceCode: "EmailTemplateCode";
|
|
5150
|
+
EventCode: "EventCode";
|
|
5151
|
+
EventItemCount: "EventItemCount";
|
|
5152
|
+
FieldCaption: "FieldCaption";
|
|
5153
|
+
FolderName: "FolderName";
|
|
5154
|
+
FoldersCount: "FoldersCount";
|
|
5155
|
+
FormattingCulture: "ContentLanguageCultureFormat";
|
|
5156
|
+
FormDisplayName: "FormDisplayName";
|
|
5157
|
+
HeadlessChannelPreviewUrl: "HeadlessChannelPreviewUrl";
|
|
5158
|
+
Kpi: "Kpi";
|
|
5159
|
+
LanguageCodeName: "ContentLanguageName";
|
|
5160
|
+
LanguageDisplayName: "ContentLanguageDisplayName";
|
|
5161
|
+
MaximumNumberOfWords: "MaximumNumberOfWords";
|
|
5162
|
+
ModuleDisplayName: "ResourceDisplayName";
|
|
5163
|
+
Name: "Name";
|
|
5164
|
+
NotificationDisplayName: "NotificationEmailDisplayName";
|
|
5165
|
+
NotificationEmailContent: "NotificationEmailContent";
|
|
5166
|
+
NotificationEmailSenderEmailAddress: "NotificationEmailSenderEmailAddress";
|
|
5167
|
+
NotificationEmailSubject: "NotificationEmailSubject";
|
|
5168
|
+
NotificationEmailTemplateDisplayName: "NotificationEmailTemplateDisplayName";
|
|
5169
|
+
NotificationEmailTemplateSourceCode: "NotificationEmailTemplateCode";
|
|
5170
|
+
ObjectType: "ObjectType";
|
|
5171
|
+
OrderStatusDisplayName: "OrderStatusDisplayName";
|
|
5172
|
+
PagesInFolderCount: "PagesInFolderCount";
|
|
5173
|
+
Password: "password";
|
|
5174
|
+
RegisterPassword: "register-password";
|
|
5175
|
+
RoleDescription: "RoleDescription";
|
|
5176
|
+
RoleDisplayName: "RoleDisplayName";
|
|
5177
|
+
ScheduledTime: "ScheduledTime";
|
|
5178
|
+
SendingDomain: "EmailChannelSendingDomain";
|
|
5179
|
+
Size: "Size";
|
|
5180
|
+
Source: "Source";
|
|
5181
|
+
StepDisplayName: "StepDisplayName";
|
|
5182
|
+
TargetAudience: "TargetAudience";
|
|
5183
|
+
TaxonomyDescription: "TaxonomyDescription";
|
|
5184
|
+
TaxonomyTitle: "TaxonomyTitle";
|
|
5185
|
+
TopicAndMainMessage: "TopicAndMainMessage";
|
|
5186
|
+
TrackedWebsiteCodeSnippet: "TrackedWebsiteCodeSnippet";
|
|
5187
|
+
TrackedWebsiteDescription: "TrackedWebsiteDescription";
|
|
5188
|
+
TrackedWebsiteDisplayName: "TrackedWebsiteDisplayName";
|
|
5189
|
+
TrackedWebsiteURL: "TrackedWebsiteURL";
|
|
5190
|
+
WebsiteChannelDomain: "WebsiteChannelDomain";
|
|
5191
|
+
WebsiteChannelId: "WebsiteChannelId";
|
|
5192
|
+
WebUrls: "WebUrls";
|
|
5193
|
+
WorkflowDisplayName_V1: "WorkflowDisplayName";
|
|
5194
|
+
WorkflowDisplayName_V2: "ContentWorkflowDisplayName";
|
|
5195
|
+
WorkflowStepDisplayName: "ContentWorkflowStepDisplayName";
|
|
5196
|
+
WorkspaceDisplayName: "WorkspaceDisplayName";
|
|
5197
|
+
WorkspaceName: "WorkspaceName";
|
|
5198
|
+
Assets: "Assets";
|
|
5199
|
+
CodeName: "code-name";
|
|
5200
|
+
CodeNameNamespace: "code-name-namespace";
|
|
5201
|
+
ConditionSearch: "condition-search";
|
|
5202
|
+
EditPageName: "edit-page-name-input";
|
|
5203
|
+
Email: "Email";
|
|
5204
|
+
FieldName: "field-name";
|
|
5205
|
+
FolderDisplayName: "FolderDisplayName";
|
|
5206
|
+
Passcode: "passcode";
|
|
5207
|
+
Search: "search-input";
|
|
5208
|
+
SettingsSearch: "settings-search-input";
|
|
5209
|
+
StandardMediaDimensionCodeName: "standard-media-dimension-code-name";
|
|
5210
|
+
StandardMediaDimensionDisplayName: "standard-media-dimension-display-name";
|
|
5211
|
+
StandardMediaDimensionHeight: "standard-media-dimension-height";
|
|
5212
|
+
StandardMediaDimensionWidth: "standard-media-dimension-width";
|
|
5213
|
+
Text: "Text";
|
|
5214
|
+
Url: "url-input-field";
|
|
5215
|
+
UserName_V1: "userName";
|
|
5216
|
+
};
|
|
5217
|
+
LabelsWithTooltip: {
|
|
5218
|
+
Default: "label-with-tooltip";
|
|
5219
|
+
};
|
|
5220
|
+
Layouts: {
|
|
5221
|
+
AiraUnavailableContentError: "aira-unavailable-content-error";
|
|
5222
|
+
AiraUnavailableContentWarning: "aira-unavailable-content-warning";
|
|
5223
|
+
CmsContactHasBecomeMember: "cmscontacthasbecomemember";
|
|
5224
|
+
CmsContactHasSubmittedForm: "cmscontacthassubmittedform";
|
|
5225
|
+
ContactGroupRecipientListThankYouPage: "ContactGroupRecipientListThankYouPage";
|
|
5226
|
+
EditableAreaGeneral: "editable-area-general";
|
|
5227
|
+
TableCellConverted: "table-cell-Converted";
|
|
5228
|
+
TableCellDroppedOff: "table-cell-Dropped off";
|
|
5229
|
+
AdditionalActions: "additional-actions";
|
|
5230
|
+
AiraAssistantMessage: "aira-assistant-message";
|
|
5231
|
+
AiraUserMessage: "aira-user-message";
|
|
5232
|
+
AssetGrid: "asset-grid";
|
|
5233
|
+
AutomationNode: "automation-node";
|
|
5234
|
+
AutomationNodeStatisticsCount: "statistics-count";
|
|
5235
|
+
ContentItemPanelGrid: "content-item-panel-grid";
|
|
5236
|
+
ContentItemSelectorWrapper: "content-item-selector-wrapper";
|
|
5237
|
+
ContentTreeActions: "content-tree-actions";
|
|
5238
|
+
CreateEmailPage: "create-email-page";
|
|
5239
|
+
CreateWebPage: "create-web-page";
|
|
5240
|
+
DeliveryStatistics: "delivery-statistics";
|
|
5241
|
+
DialogFooter: "dialog-footer";
|
|
5242
|
+
EditPage: "edit-page";
|
|
5243
|
+
EmailBodySuggestionsList: "email-body-suggestions-list";
|
|
5244
|
+
EmailPanelContent: "email-panel-content";
|
|
5245
|
+
EmailPreview: "email-preview";
|
|
5246
|
+
EmailSubjectSuggestionsList: "email-subject-suggestions-list";
|
|
5247
|
+
EngagementStatistics: "engagement-statistics";
|
|
5248
|
+
Header: "Header";
|
|
5249
|
+
MassAssetUploadGrid: "mass-asset-upload-grid";
|
|
5250
|
+
NotificationEmailPreview: "notification-email-preview";
|
|
5251
|
+
NotificationEmailSubject: "notification-email-subject";
|
|
5252
|
+
PropertiesPage: "properties-page";
|
|
5253
|
+
RefinementHeader: "refinement-header";
|
|
5254
|
+
RteRefinementSuggestionsList: "rte-refinement-suggestions-list";
|
|
5255
|
+
SelectedEmails: "selected-emails";
|
|
5256
|
+
SidePanelFooter: "side-panel-footer";
|
|
5257
|
+
SmartFolderSelectorWrapper: "smart-folder-selector-wrapper";
|
|
5258
|
+
TableHeader: "table-header";
|
|
5259
|
+
WebPage: "web-page";
|
|
5260
|
+
};
|
|
5261
|
+
Links: {
|
|
5262
|
+
Page: "page-link";
|
|
5263
|
+
};
|
|
5264
|
+
MenuItems: {
|
|
5265
|
+
Default: "menu-item";
|
|
5266
|
+
NewFolder: "new-folder-menu-item";
|
|
5267
|
+
SelectLibrary: "select-library-item";
|
|
5268
|
+
TreeNodeAction: "action";
|
|
5269
|
+
};
|
|
5270
|
+
NotificationBars: {
|
|
5271
|
+
Alert: "notification-bar-alert-0";
|
|
5272
|
+
Info: "notification-bar-info-0";
|
|
5273
|
+
Warning: "notification-bar-warning-0";
|
|
5274
|
+
Default_V1: "notificationBar";
|
|
5275
|
+
Default_V2: "notification-bar";
|
|
5276
|
+
AiraUnavailableContentAlert: "AiraUnavailableContentAlertNotificationBar";
|
|
5277
|
+
AiraUnavailableContentWarning: "AiraUnavailableContentWarningNotificationBar";
|
|
5278
|
+
Workflow: "workflow-notification-bar";
|
|
5279
|
+
};
|
|
5280
|
+
RadioGroups: {
|
|
5281
|
+
EmailSendRadioOptions: "ImmediateSend";
|
|
5282
|
+
PublishNow: "PublishNow";
|
|
5283
|
+
SchedulePublish: "schedule-publish";
|
|
5284
|
+
Source: "Source";
|
|
5285
|
+
UnpublishNow: "UnpublishNow";
|
|
5286
|
+
};
|
|
5287
|
+
RichTextEditors: {
|
|
5288
|
+
Default: "rich-text-editor";
|
|
5289
|
+
};
|
|
5290
|
+
SchemaBarItems: {
|
|
5291
|
+
Default: "schema-bar-item";
|
|
5292
|
+
};
|
|
5293
|
+
SelectGroups: {
|
|
5294
|
+
Language: "LanguageSelector";
|
|
5295
|
+
LanguageSelectionDropdown: "LanguageSelectionDropdown";
|
|
5296
|
+
WorkspaceSelectionDropdown: "WorkspaceSelectionDropdown";
|
|
5297
|
+
};
|
|
5298
|
+
Selectors: {
|
|
5299
|
+
AllowedContentType: "allowed-content-type";
|
|
5300
|
+
AllowedContentTypes: "allowed-content-types";
|
|
5301
|
+
AllowedContentTypesInTheScope: "allowed-content-types-in-the-scope";
|
|
5302
|
+
ContentLanguage: "content-language";
|
|
5303
|
+
ContentType: "content-type";
|
|
5304
|
+
ContentTypeForMassUploadedItems: "content-type-for-mass-uploaded-items";
|
|
5305
|
+
EmailSender: "sender";
|
|
5306
|
+
EmailSendTo: "send-to";
|
|
5307
|
+
EmailTemplateProperties: "email-template";
|
|
5308
|
+
PrimaryLanguage: "primary-language";
|
|
5309
|
+
Role: "role";
|
|
5310
|
+
ScopeWebPage: "ScopeWebPage";
|
|
5311
|
+
WorkflowStepIconClass: "ContentWorkflowStepIconClass";
|
|
5312
|
+
Asset: "asset-selector";
|
|
5313
|
+
Dropdown: "dropdown-selector";
|
|
5314
|
+
File: "file-uploader";
|
|
5315
|
+
FileInputUpdate: "file-input-update";
|
|
5316
|
+
FileInputUpload: "file-input-upload";
|
|
5317
|
+
IconValue: "icon-value";
|
|
5318
|
+
PermissionItem: "permission-item-selector";
|
|
5319
|
+
TagSelectedWebPage: "tag-selected-webpage";
|
|
5320
|
+
Workspace: "WorkspaceSelector";
|
|
5321
|
+
};
|
|
5322
|
+
Selects: {
|
|
5323
|
+
ChannelSize: "ChannelSize";
|
|
5324
|
+
ChannelType: "ChannelType";
|
|
5325
|
+
ClassContentTypeType: "ClassContentTypeType";
|
|
5326
|
+
CodeNameColumn: "CodeNameColumn";
|
|
5327
|
+
ContentType: "ContentType";
|
|
5328
|
+
DatabaseColumn: "DatabaseColumn";
|
|
5329
|
+
DataType: "DataType";
|
|
5330
|
+
DisplayNameColumn: "DisplayNameColumn";
|
|
5331
|
+
EmailContentFields: "email-content-fields";
|
|
5332
|
+
EmailPurpose: "EmailPurpose";
|
|
5333
|
+
EmailTemplate: "EmailTemplate";
|
|
5334
|
+
Form: "select-a-form";
|
|
5335
|
+
FormComponent: "FormComponent";
|
|
5336
|
+
MoveToWorkflowStep: "MoveToWorkflowStep";
|
|
5337
|
+
NotificationEmailEventType: "NotificationEmailEventType";
|
|
5338
|
+
NotificationTemplate: "notification-template";
|
|
5339
|
+
RecipientAttribute: "RecipientAttribute";
|
|
5340
|
+
Recipients: "recipients";
|
|
5341
|
+
Type: "type";
|
|
5342
|
+
UploadFieldName: "UploadFieldName";
|
|
5343
|
+
UserName_V2: "user-name";
|
|
5344
|
+
WorkflowRecurrenceType: "WorkflowRecurrenceType";
|
|
5345
|
+
ApplicationItem: "application-item-selector";
|
|
5346
|
+
EmailChannel: "select-email-channel";
|
|
5347
|
+
Library: "select-library";
|
|
5348
|
+
TemplateSelector: "template-selector";
|
|
5349
|
+
WebPage: "select-web-page";
|
|
5350
|
+
Workspace: "select-workspace";
|
|
5351
|
+
WorkspaceItem: "workspace-item-selector";
|
|
5352
|
+
};
|
|
5353
|
+
SideMenus: {
|
|
5354
|
+
Application: "application-menu";
|
|
5355
|
+
Item: "side-menu-item";
|
|
5356
|
+
Navigation: "navigation-side-menu";
|
|
5357
|
+
};
|
|
5358
|
+
SidePanels: {
|
|
5359
|
+
CombinedSelectorSelectExisting: "CombinedSelector.SelectExisting";
|
|
5360
|
+
Default: "side-panel";
|
|
5361
|
+
Account: "account-panel";
|
|
5362
|
+
ApplicationList: "application-list";
|
|
5363
|
+
Asset: "asset-panel";
|
|
5364
|
+
AutomationProcess: "automation-process-side-panel";
|
|
5365
|
+
Delete: "delete-dialog";
|
|
5366
|
+
MultiSourceAsset: "multi-source-asset-panel";
|
|
5367
|
+
SelectAsset: "Assets.SelectExisting";
|
|
5368
|
+
SelectEmail: "SelectEmail";
|
|
5369
|
+
SelectWebPage: "SelectWebPage";
|
|
5370
|
+
};
|
|
5371
|
+
SimpleStatuses: {
|
|
5372
|
+
Default: "status-card";
|
|
5373
|
+
MainVersion: "simple-main-version-status";
|
|
5374
|
+
};
|
|
5375
|
+
Snackbars: {
|
|
5376
|
+
Default: "snackbar";
|
|
5377
|
+
ItemMessage: "snackbar-item-message";
|
|
5378
|
+
};
|
|
5379
|
+
Tables: {
|
|
5380
|
+
Default: "table";
|
|
5381
|
+
CascadeDelete: "cascade-delete-table";
|
|
5382
|
+
CascadePublish: "cascade-publish-table";
|
|
5383
|
+
ContentSynchronization: "content-synchronization-table";
|
|
5384
|
+
Publish: "publish-table";
|
|
5385
|
+
Row: "table-row";
|
|
5386
|
+
};
|
|
5387
|
+
Tags: {
|
|
5388
|
+
Default: "tag";
|
|
5389
|
+
};
|
|
5390
|
+
TextAreas: {
|
|
5391
|
+
SearchedData: "searched_data";
|
|
5392
|
+
};
|
|
5393
|
+
TreeViews: {
|
|
5394
|
+
Default: "tree";
|
|
5395
|
+
AssetFolders: "asset-folders-tree";
|
|
5396
|
+
Content: "content-tree";
|
|
5397
|
+
ContentPreview: "content-tree-preview";
|
|
5398
|
+
DeletionPreview: "deletion-tree-preview";
|
|
5399
|
+
EmptyCell: "tree-item-empty-cell";
|
|
5400
|
+
Item: "tree-item";
|
|
5401
|
+
ItemChildren: "tree-item-children";
|
|
5402
|
+
ItemRow: "tree-item-row";
|
|
5403
|
+
ItemTitle: "tree-item-title";
|
|
5404
|
+
Taxonomy: "taxonomy-tree";
|
|
5405
|
+
Template: "tree-template-treeview";
|
|
5406
|
+
};
|
|
5407
|
+
VerticalMenus: {
|
|
5408
|
+
Item: "vertical-menu-item";
|
|
5409
|
+
SideNavigation: "side-navigation-vertical-menu";
|
|
5410
|
+
};
|
|
5411
|
+
VerticalTabs: {
|
|
5412
|
+
Default: "vertical-tab";
|
|
5413
|
+
};
|
|
5414
|
+
ViewMenus: {
|
|
5415
|
+
Item: "view-menu-item";
|
|
5416
|
+
Navigation: "navigation-view-menu";
|
|
5417
|
+
};
|
|
5418
|
+
};
|
|
5126
5419
|
|
|
5127
5420
|
export declare const TextArea: React_2.ForwardRefExoticComponent<TextAreaProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
5128
5421
|
|
|
@@ -5286,7 +5579,7 @@ declare interface ToggleButtonBaseProps {
|
|
|
5286
5579
|
readonly className?: string;
|
|
5287
5580
|
readonly isSelected: boolean;
|
|
5288
5581
|
readonly type: ToggleButtonBaseTypes;
|
|
5289
|
-
readonly dataTestId?:
|
|
5582
|
+
readonly dataTestId?: TestId;
|
|
5290
5583
|
}
|
|
5291
5584
|
|
|
5292
5585
|
declare enum ToggleButtonBaseTypes {
|
|
@@ -5535,11 +5828,11 @@ export declare interface TreeNodeMenuActionsProps {
|
|
|
5535
5828
|
/**
|
|
5536
5829
|
* Test-id attribute of the menu.
|
|
5537
5830
|
*/
|
|
5538
|
-
readonly dataTestIdMenu?:
|
|
5831
|
+
readonly dataTestIdMenu?: TestId;
|
|
5539
5832
|
/**
|
|
5540
5833
|
* Test-id attribute of the menus button.
|
|
5541
5834
|
*/
|
|
5542
|
-
readonly dataTestIdMenuButton?:
|
|
5835
|
+
readonly dataTestIdMenuButton?: TestId;
|
|
5543
5836
|
}
|
|
5544
5837
|
|
|
5545
5838
|
export declare interface TreeNodeMenuProps<TActionType extends TreeNodeAction> {
|
|
@@ -5643,7 +5936,7 @@ export declare interface UITestProps {
|
|
|
5643
5936
|
/**
|
|
5644
5937
|
* Test id data attribute.
|
|
5645
5938
|
*/
|
|
5646
|
-
readonly dataTestId?:
|
|
5939
|
+
readonly dataTestId?: TestId;
|
|
5647
5940
|
}
|
|
5648
5941
|
|
|
5649
5942
|
/**
|