@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 +615 -301
- package/dist/entry.js +292 -0
- package/package.json +8 -77
- package/dist/entry.kxh.05234f2133861b5dd7dd.js +0 -58
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
|
*/
|
|
@@ -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?:
|
|
4824
|
-
readonly dataTestIdTagButton?:
|
|
4825
|
-
readonly dataTestIdRemoveButton?:
|
|
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
|
|
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
|
-
|
|
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?:
|
|
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?:
|
|
5845
|
+
readonly dataTestIdMenu?: TestId;
|
|
5539
5846
|
/**
|
|
5540
5847
|
* Test-id attribute of the menus button.
|
|
5541
5848
|
*/
|
|
5542
|
-
readonly dataTestIdMenuButton?:
|
|
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?:
|
|
5960
|
+
readonly dataTestId?: TestId;
|
|
5647
5961
|
}
|
|
5648
5962
|
|
|
5649
5963
|
/**
|