@kentico/xperience-admin-base 30.0.3 → 30.1.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
@@ -266,6 +266,11 @@ declare interface ConfirmationConfiguration {
266
266
  * Represents a command name used to change the form items.
267
267
  */
268
268
  readonly changeCommandName?: string;
269
+ /**
270
+ * List of fields that if any of them were modified will result in showing the confirmation dialog.
271
+ * If list is empty, dialog will be shown allways even if no record was modified.
272
+ */
273
+ readonly dependentFieldNames?: string[];
269
274
  }
270
275
 
271
276
  declare interface DialogAction extends Omit<DialogFooterActionProps, 'color'> {}