@kentico/xperience-admin-components 22.3.1 → 23.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
@@ -514,6 +514,8 @@ export declare enum ButtonType {
514
514
 
515
515
  export declare const Callout: React_2.ForwardRefExoticComponent<CalloutProps & React_2.RefAttributes<HTMLDivElement>>;
516
516
 
517
+ export declare const calloutMaxWidthOnDesk = "600px";
518
+
517
519
  export declare enum CalloutPlacementType {
518
520
  OnPaper = "onPaper",
519
521
  OnDesk = "onDesk"
@@ -719,6 +721,8 @@ export declare enum Colors {
719
721
  ProductSelected = "var(--color-product-selected)",
720
722
  ProductSelectedHover = "var(--color-product-selected-hover)",
721
723
  SearchBackgroundHighlighted = "var(--color-search-background-highlighted)",
724
+ MacroBackgroundHighlighted = "var(--color-macro-background-highlighted)",
725
+ MacroBackgroundSelected = "var(--color-macro-background-selected)",
722
726
  ShelfBackground = "var(--color-shelf-background)",
723
727
  SkeletonBackground = "var(--color-skeleton-background)",
724
728
  SkeletonContent = "var(--color-skeleton-content)",
@@ -1908,6 +1912,8 @@ export declare const MenuItem: React_2.ForwardRefExoticComponent<MenuItemProps &
1908
1912
  export declare interface MenuItemProps extends UITestProps {
1909
1913
  readonly primaryLabel: string;
1910
1914
  readonly secondaryLabel?: string;
1915
+ readonly tooltipText?: string;
1916
+ readonly tooltipPlacement?: TooltipPlacement;
1911
1917
  readonly destructive?: boolean;
1912
1918
  readonly disabled?: boolean;
1913
1919
  readonly selected?: boolean;
@@ -2254,6 +2260,10 @@ export declare interface RichTextEditorRef {
2254
2260
  * Executes registered command by its name.
2255
2261
  */
2256
2262
  readonly executeCommand: (commandName: string) => void;
2263
+ /**
2264
+ * Insert html content into the text on current caret position (required).
2265
+ */
2266
+ readonly insertHtml?: (htmlContent: string) => void;
2257
2267
  }
2258
2268
 
2259
2269
  export declare const Row: React_2.ForwardRefExoticComponent<RowProps & React_2.RefAttributes<HTMLDivElement>>;
@@ -2802,6 +2812,7 @@ export declare interface TagProps {
2802
2812
  readonly onRemoveClick?: () => void;
2803
2813
  readonly onRemoveMouseDown?: () => void;
2804
2814
  readonly disabled?: boolean;
2815
+ readonly removable?: boolean;
2805
2816
  readonly background?: TagBackgroundType;
2806
2817
  readonly fullWidth?: boolean;
2807
2818
  readonly isDragging?: boolean;