@kentico/xperience-admin-components 29.3.0 → 29.3.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
@@ -3103,6 +3103,10 @@ export declare interface SidePanelCloseEvent {
3103
3103
  * Source of the closing event
3104
3104
  */
3105
3105
  readonly source: SidePanelCloseSource;
3106
+ /**
3107
+ * Event's target path.
3108
+ */
3109
+ readonly eventPath?: EventTarget[];
3106
3110
  }
3107
3111
 
3108
3112
  export declare enum SidePanelCloseSource {
@@ -3123,7 +3127,7 @@ export declare enum SidePanelCloseSource {
3123
3127
  */
3124
3128
  BlockedByForeignPanel = "blocked_by_foreign_panel",
3125
3129
  /**
3126
- *
3130
+ * Parent panel wants to close, so it requests all child panels to close.
3127
3131
  */
3128
3132
  ParentPanelClosed = "parent_panel_closed"
3129
3133
  }