@kentico/xperience-admin-components 24.0.2 → 25.0.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
@@ -562,6 +562,7 @@ export declare interface BreadcrumbsProps {
562
562
  readonly shorten?: boolean;
563
563
  readonly pin?: PinProps;
564
564
  readonly breadcrumbs: BreadcrumbProps[];
565
+ readonly onCollapsedToMinWidthChange?: (isCollapsedToMinWidth: boolean) => void;
565
566
  readonly containerRef?: React.RefObject<HTMLElement>;
566
567
  }
567
568
 
@@ -1162,6 +1163,7 @@ declare interface DialogContentProps extends DialogFooterProps {
1162
1163
 
1163
1164
  declare interface DialogFooterActionProps extends Pick<ButtonProps, 'icon' | 'trailingIcon' | 'destructive' | 'disabled' | 'inProgress' | 'color' | 'onClick'>, UITestProps {
1164
1165
  readonly label: string;
1166
+ readonly tooltipText?: string;
1165
1167
  }
1166
1168
 
1167
1169
  declare interface DialogFooterProps {
@@ -2422,6 +2424,7 @@ export declare interface RadioGroupProps extends Omit<FormItemWrapperProps, 'id'
2422
2424
  readonly onChange?: (value: string) => void;
2423
2425
  readonly size?: RadioGroupSize;
2424
2426
  readonly inline?: boolean;
2427
+ readonly ariaLabel?: string;
2425
2428
  }
2426
2429
 
2427
2430
  export declare enum RadioGroupSize {
@@ -2549,6 +2552,10 @@ export declare interface RichTextEditorRef {
2549
2552
  * Insert html content into the text on current caret position (required).
2550
2553
  */
2551
2554
  readonly insertHtml?: (htmlContent: string) => void;
2555
+ /**
2556
+ * Ensure change.
2557
+ */
2558
+ readonly ensureChange?: () => void;
2552
2559
  }
2553
2560
 
2554
2561
  export declare const Row: React_2.ForwardRefExoticComponent<RowProps & React_2.RefAttributes<HTMLDivElement>>;
@@ -2816,11 +2823,7 @@ export declare interface SimpleStatusSuccessProps extends Omit<BaseSimpleStatusP
2816
2823
 
2817
2824
  export declare const SimpleStatusTableCellComponent: ({ iconName, label, iconColor, labelColor }: SimpleStatusTableCellComponentProps) => JSX.Element;
2818
2825
 
2819
- export declare interface SimpleStatusTableCellComponentProps {
2820
- readonly iconName: IconName;
2821
- readonly label: string;
2822
- readonly iconColor: keyof typeof Colors;
2823
- readonly labelColor: keyof typeof Colors;
2826
+ export declare interface SimpleStatusTableCellComponentProps extends StatusComponentProps {
2824
2827
  }
2825
2828
 
2826
2829
  declare enum SimpleStatusType {
@@ -2931,6 +2934,28 @@ declare interface StandardTreeNodeProps extends BaseTreeNodeProps {
2931
2934
  readonly renderNode: (isNodeSelected: boolean) => React.ReactNode;
2932
2935
  }
2933
2936
 
2937
+ /**
2938
+ * Represents properties of the basic status component (colored text with icon).
2939
+ */
2940
+ export declare interface StatusComponentProps {
2941
+ /**
2942
+ * Name of the icon.
2943
+ */
2944
+ readonly iconName: IconName;
2945
+ /**
2946
+ * Text of the status label.
2947
+ */
2948
+ readonly label: string;
2949
+ /**
2950
+ * Color of the icon.
2951
+ */
2952
+ readonly iconColor: keyof typeof Colors;
2953
+ /**
2954
+ * Color of the label.
2955
+ */
2956
+ readonly labelColor: keyof typeof Colors;
2957
+ }
2958
+
2934
2959
  export declare const StickyHeader: ({ children }: StickyHeaderProps) => JSX.Element;
2935
2960
 
2936
2961
  export declare interface StickyHeaderProps {
@@ -3009,6 +3034,7 @@ export declare const Table: React_2.ForwardRefExoticComponent<TableProps & React
3009
3034
 
3010
3035
  export declare interface TableAction {
3011
3036
  label: string;
3037
+ title?: string;
3012
3038
  icon: IconName;
3013
3039
  disabled: boolean;
3014
3040
  destructive: boolean;