@kentico/xperience-admin-components 29.2.1 → 29.3.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
@@ -2426,6 +2426,23 @@ export declare interface LinkProps extends UITestProps {
2426
2426
  * Indicates whether the link is active. If `true`, text is used instead of anchor element.
2427
2427
  */
2428
2428
  readonly inactive?: boolean;
2429
+ /**
2430
+ * Indicates whether the link should be truncated with ellipsis.
2431
+ */
2432
+ readonly ellipsis?: boolean;
2433
+ }
2434
+
2435
+ export declare const LinkTableCellComponent: ({ text, url }: LinkTableCellComponentProps) => JSX.Element;
2436
+
2437
+ export declare interface LinkTableCellComponentProps {
2438
+ /**
2439
+ * Text of the link.
2440
+ */
2441
+ readonly text: string;
2442
+ /**
2443
+ * URL of the link.
2444
+ */
2445
+ readonly url: string;
2429
2446
  }
2430
2447
 
2431
2448
  export declare enum MediaBreakpoints {
@@ -3844,6 +3861,24 @@ export declare interface TagTableCellComponentProps {
3844
3861
  readonly tooltipText?: string;
3845
3862
  }
3846
3863
 
3864
+ export declare enum TestIds {
3865
+ Chevron = "chevron",
3866
+ ConfirmAction = "confirm-action",
3867
+ DeleteFolderActionButton = "deletefolder-action",
3868
+ DisplayName = "DisplayName",
3869
+ FolderDisplayName = "FolderDisplayName",
3870
+ NewSmartFolderPlusButton = "new-smart-folder-plus-button",
3871
+ RenameFolderActionButton = "renamefolder-action",
3872
+ RenameSmartFolderDialog = "rename-smart-folder-dialog",
3873
+ SidePanel = "side-panel",
3874
+ SmartFolderFilterForm = "smart-folder-form",
3875
+ SmartFolderLabel = "smart-folder-label",
3876
+ SubmitButton = "submit-button",
3877
+ TreeItemMenuButton = "tree-item-menu-button",
3878
+ Button = "button",
3879
+ SaveSmartFolderDialog = "save-smart-folder-dialog"
3880
+ }
3881
+
3847
3882
  export declare const TextArea: React_2.ForwardRefExoticComponent<TextAreaProps & React_2.RefAttributes<HTMLDivElement>>;
3848
3883
 
3849
3884
  export declare interface TextAreaProps extends Pick<React_2.TextareaHTMLAttributes<HTMLTextAreaElement>, 'onChange' | 'disabled' | 'name' | 'onClick' | 'onKeyPress' | 'id' | 'placeholder' | 'maxLength'>, UITestProps {