@kentico/xperience-admin-components 30.5.4 → 30.6.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
@@ -1280,6 +1280,7 @@ export declare interface DialogAction extends Omit<DialogFooterActionProps, 'col
1280
1280
 
1281
1281
  export declare const dialogConfig: {
1282
1282
  dialogContainerId: string;
1283
+ airaContainerId: string;
1283
1284
  };
1284
1285
 
1285
1286
  export declare const dialogContentClass = "dialog_content";
@@ -1660,6 +1661,11 @@ export declare interface FroalaEditorConfigurator {
1660
1661
  readonly registerCommand: (buttonName: string, parameters: Partial<RegisterCommandParameters>) => void;
1661
1662
  readonly disableButton: (buttonName: string, buttonTitle?: string) => void;
1662
1663
  readonly enableButton: (buttonName: string, buttonTitle?: string) => void;
1664
+ /**
1665
+ * Allows to modify Froala editor options before initialization through callback.
1666
+ * @note If the options returned from the callback contain any events, they will be combined with the default events or those provided by other plugins.
1667
+ */
1668
+ readonly configureOptions?: (callback: (currentOptions: Partial<FroalaOptions>) => Partial<FroalaOptions>) => void;
1663
1669
  }
1664
1670
 
1665
1671
  export declare const FunnelChart: React_2.ForwardRefExoticComponent<FunnelChartProps & React_2.RefAttributes<HTMLDivElement>>;
@@ -2231,6 +2237,7 @@ export declare const KXIcons: {
2231
2237
  'xp-earth-micro': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2232
2238
  'xp-earth': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2233
2239
  'xp-edge': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2240
+ 'xp-edit-in-square': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2234
2241
  'xp-edit': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2235
2242
  'xp-ekg-line': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2236
2243
  'xp-ellipsis': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
@@ -2682,6 +2689,7 @@ export declare const KXIconSets: {
2682
2689
  'xp-earth-micro': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2683
2690
  'xp-earth': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2684
2691
  'xp-edge': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2692
+ 'xp-edit-in-square': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2685
2693
  'xp-edit': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2686
2694
  'xp-ekg-line': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2687
2695
  'xp-ellipsis': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
@@ -3577,7 +3585,7 @@ export declare interface RadioButtonProps {
3577
3585
  /**
3578
3586
  * Label used as description to radiobutton.
3579
3587
  */
3580
- readonly children: string;
3588
+ readonly children?: string;
3581
3589
  /**
3582
3590
  * Input ref.
3583
3591
  */
@@ -3590,12 +3598,15 @@ export declare interface RadioButtonProps {
3590
3598
  */
3591
3599
  export declare const RadioGroup: React_2.ForwardRefExoticComponent<RadioGroupProps & React_2.RefAttributes<HTMLDivElement>>;
3592
3600
 
3593
- export declare interface RadioGroupProps extends Omit<FormItemWrapperProps, 'id' | 'inline' | 'labelClassnames' | 'footerClassnames' | 'subheadlineClassnames' | 'editMode'> {
3601
+ export declare interface RadioGroupProps extends Omit<FormItemWrapperProps, 'id' | 'inline' | 'labelClassnames' | 'footerClassnames' | 'subheadlineClassnames' | 'editMode' | 'disabled'> {
3594
3602
  readonly name: string;
3595
3603
  readonly value?: string;
3596
3604
  readonly onChange?: (value: string) => void;
3597
3605
  readonly size?: RadioGroupSize;
3598
3606
  readonly inline?: boolean;
3607
+ /**
3608
+ * @deprecated Property is deprecated and will be removed in the next version. Use `aria-label` instead.
3609
+ */
3599
3610
  readonly ariaLabel?: string;
3600
3611
  readonly disabled?: boolean;
3601
3612
  readonly readOnly?: boolean;
@@ -3654,6 +3665,14 @@ export declare interface ResizableBoxProps extends LayoutComponentProps, UITestP
3654
3665
  * Style of the component.
3655
3666
  */
3656
3667
  style?: CSSProperties;
3668
+ /**
3669
+ * Whether to use inline `style` or CSS variables for the width and height.
3670
+ */
3671
+ styleMode?: 'inline-styles' | 'css-variables';
3672
+ /**
3673
+ * The ID of the component element.
3674
+ */
3675
+ id?: string;
3657
3676
  }
3658
3677
 
3659
3678
  export declare type ResizeEvent = {
@@ -4555,6 +4574,14 @@ export declare interface TableColumn {
4555
4574
  * Indicates if the column is searchable via search input.
4556
4575
  */
4557
4576
  searchable: boolean;
4577
+ /**
4578
+ * Column tooltip.
4579
+ */
4580
+ tooltip?: string;
4581
+ /**
4582
+ * Dangerously sets tooltip as inner HTML.
4583
+ */
4584
+ tooltipAsHtml?: boolean;
4558
4585
  }
4559
4586
 
4560
4587
  export declare const TableHeader: React_2.ForwardRefExoticComponent<TableHeaderProps & React_2.RefAttributes<HTMLDivElement>>;
@@ -4806,6 +4833,11 @@ export declare interface TagTableCellComponentProps {
4806
4833
  readonly tooltipText?: string;
4807
4834
  }
4808
4835
 
4836
+ /**
4837
+ * Intended for internal use only.
4838
+ * Shared `data-testid` values used across tests and UI.
4839
+ * May change over time.
4840
+ */
4809
4841
  export declare enum TestIds {
4810
4842
  NestedActionMenuItemMassUpload = "nested-action-menu-item-mass-upload",
4811
4843
  ExpandSplitButton = "expand-split-button",
@@ -5070,13 +5102,26 @@ export declare enum TestIds {
5070
5102
  EmailSendScheduledTime = "ScheduledTime",
5071
5103
  BreadcrumbStatus = "breadcrumbs-status",
5072
5104
  NotificationBar = "notification-bar",
5105
+ NotificationBarAlert = "notification-bar-alert-0",
5106
+ NotificationBarWarning = "notification-bar-warning-0",
5107
+ NotificationBarInfo = "notification-bar-info-0",
5073
5108
  EmailEditRegularButton = "content-item-menu-split-button-editregular",
5109
+ EmailEditNonRegularButton = "content-item-menu-split-button-edit",
5074
5110
  EmailRescheduleButton = "content-item-action-menu-item-reschedule",
5075
5111
  SideMenuItem = "side-menu-item",
5076
5112
  EmailPlainText = "EmailPlainText",
5077
5113
  ContentItemDeleteButton = "content-item-action-menu-item-delete",
5078
5114
  EmailNoStatisticsData = "no-statistics-data",
5079
- EmailRecalculateStatisticsButton = "recalculate-email-statistics-button"
5115
+ EmailRecalculateStatisticsButton = "recalculate-email-statistics-button",
5116
+ RichTextEditor = "rich-text-editor",
5117
+ RecipientAttribute = "RecipientAttribute",
5118
+ BackupText = "BackupText",
5119
+ InsertDynamicTextDialog = "insert-dynamic-text-dialog",
5120
+ RTEInsertDynamicTextButton = "insertDynamicTextButton",
5121
+ TaxonomyTitle = "TaxonomyTitle",
5122
+ TaxonomyDescription = "TaxonomyDescription",
5123
+ TemplateSelector = "template-selector",
5124
+ StatusCard = "status-card"
5080
5125
  }
5081
5126
 
5082
5127
  export declare const TextArea: React_2.ForwardRefExoticComponent<TextAreaProps & React_2.RefAttributes<HTMLDivElement>>;