@kentico/xperience-admin-base 28.4.4 → 29.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
@@ -7,6 +7,28 @@ import { default as React_2 } from 'react';
7
7
  import { RefObject } from 'react';
8
8
  import { RegisterCommandParameters } from 'froala-editor';
9
9
 
10
+ /**
11
+ * Configuration representing props of the component.
12
+ */
13
+ export declare interface ActionComponentProps {
14
+ /**
15
+ * Name of the rendered component.
16
+ */
17
+ readonly componentName: string;
18
+ /**
19
+ * Function called to unload Component.
20
+ */
21
+ readonly unloadComponent: () => void;
22
+ /**
23
+ * The data for the component.
24
+ */
25
+ readonly componentData: any;
26
+ /**
27
+ * Notifies that the action has been executed.
28
+ */
29
+ readonly onActionExecuted: () => void;
30
+ }
31
+
10
32
  /**
11
33
  * Represents basic set of additional action properties.
12
34
  */