@kentico/xperience-admin-components 29.2.2 → 29.3.1

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 {
@@ -3086,6 +3103,10 @@ export declare interface SidePanelCloseEvent {
3086
3103
  * Source of the closing event
3087
3104
  */
3088
3105
  readonly source: SidePanelCloseSource;
3106
+ /**
3107
+ * Event's target path.
3108
+ */
3109
+ readonly eventPath?: EventTarget[];
3089
3110
  }
3090
3111
 
3091
3112
  export declare enum SidePanelCloseSource {
@@ -3106,7 +3127,7 @@ export declare enum SidePanelCloseSource {
3106
3127
  */
3107
3128
  BlockedByForeignPanel = "blocked_by_foreign_panel",
3108
3129
  /**
3109
- *
3130
+ * Parent panel wants to close, so it requests all child panels to close.
3110
3131
  */
3111
3132
  ParentPanelClosed = "parent_panel_closed"
3112
3133
  }
@@ -3844,6 +3865,24 @@ export declare interface TagTableCellComponentProps {
3844
3865
  readonly tooltipText?: string;
3845
3866
  }
3846
3867
 
3868
+ export declare enum TestIds {
3869
+ Chevron = "chevron",
3870
+ ConfirmAction = "confirm-action",
3871
+ DeleteFolderActionButton = "deletefolder-action",
3872
+ DisplayName = "DisplayName",
3873
+ FolderDisplayName = "FolderDisplayName",
3874
+ NewSmartFolderPlusButton = "new-smart-folder-plus-button",
3875
+ RenameFolderActionButton = "renamefolder-action",
3876
+ RenameSmartFolderDialog = "rename-smart-folder-dialog",
3877
+ SidePanel = "side-panel",
3878
+ SmartFolderFilterForm = "smart-folder-form",
3879
+ SmartFolderLabel = "smart-folder-label",
3880
+ SubmitButton = "submit-button",
3881
+ TreeItemMenuButton = "tree-item-menu-button",
3882
+ Button = "button",
3883
+ SaveSmartFolderDialog = "save-smart-folder-dialog"
3884
+ }
3885
+
3847
3886
  export declare const TextArea: React_2.ForwardRefExoticComponent<TextAreaProps & React_2.RefAttributes<HTMLDivElement>>;
3848
3887
 
3849
3888
  export declare interface TextAreaProps extends Pick<React_2.TextareaHTMLAttributes<HTMLTextAreaElement>, 'onChange' | 'disabled' | 'name' | 'onClick' | 'onKeyPress' | 'id' | 'placeholder' | 'maxLength'>, UITestProps {