forlogic-core 3.0.6 → 3.0.7

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.
@@ -51,6 +51,9 @@ interface SimpleCrudPageConfig<T extends CrudEntity> {
51
51
  defaultHiddenColumns?: string[];
52
52
  /** Modo somente leitura: oculta ações e impede edição/exclusão. */
53
53
  readOnly?: boolean;
54
+ /** Exibir ação "Excluir" na linha e no dialog de confirmação (default: true). Use `false`
55
+ * quando a entidade não suporta exclusão de verdade (ex.: só "ignorar"/soft actions). */
56
+ showDeleteAction?: boolean;
54
57
  }
55
58
  interface CrudPageGeneratorConfig<T extends CrudEntity> {
56
59
  manager: any;