structra-ui 0.2.79 → 0.2.81

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "structra-ui",
3
- "version": "0.2.79",
3
+ "version": "0.2.81",
4
4
  "description": "Biblioteca de componentes Angular da StructraLab (UI reutilizável).",
5
5
  "homepage": "https://structralab.com/",
6
6
  "license": "MIT",
@@ -4253,8 +4253,9 @@ declare class DataGridComponent<T = unknown> implements OnInit, OnChanges, OnDes
4253
4253
  * não volta a renderizar e editar/remover parece “morto”.
4254
4254
  */
4255
4255
  private buildActionsContext;
4256
- /** Expõe o contexto para `[context]` no template do `ag-grid-angular`. */
4257
- get actionsContext(): DataGridActionsContext<T>;
4256
+ /** Contexto estável para AG Grid (evita nova referência a cada CD). */
4257
+ actionsContextRef: DataGridActionsContext<T>;
4258
+ private syncActionsContextRef;
4258
4259
  agColumnDefs: ColDef<T>[];
4259
4260
  ngOnInit(): void;
4260
4261
  /**