@kentico/xperience-admin-base 30.12.3 → 31.0.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
@@ -152,6 +152,10 @@ export declare interface AssetRichTextEditorPluginOptions extends RichTextEditor
152
152
  * Configuration for smart inline asset upload.
153
153
  */
154
154
  readonly assetUploadConfiguration: SmartInlineAssetUploadConfiguration;
155
+ /**
156
+ * Indicates if insert image should be available.
157
+ */
158
+ readonly isInsertImageAvailable: boolean;
155
159
  }
156
160
 
157
161
  export declare interface AssetRichTextEditorPluginProps extends RichTextEditorPluginProps {
@@ -314,8 +318,7 @@ declare interface ConfirmationConfiguration {
314
318
  declare interface DialogAction extends Omit<DialogFooterActionProps, 'color'> {}
315
319
 
316
320
  declare interface DialogFooterActionProps
317
- extends Pick<ButtonProps, 'icon' | 'trailingIcon' | 'destructive' | 'disabled' | 'inProgress' | 'color' | 'onClick'>,
318
- UITestProps {
321
+ extends Pick<ButtonProps, 'icon' | 'trailingIcon' | 'destructive' | 'disabled' | 'inProgress' | 'color' | 'onClick'>, UITestProps {
319
322
  readonly label: string;
320
323
  readonly tooltipText?: string;
321
324
  }
@@ -325,6 +328,7 @@ UITestProps {
325
328
  */
326
329
  declare interface DialogHandlers {
327
330
  readonly submitAction: DialogAction;
331
+ readonly cancelAction?: DialogAction;
328
332
  }
329
333
 
330
334
  /**