structra-ui 0.2.15 → 0.2.16

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.15",
3
+ "version": "0.2.16",
4
4
  "description": "Biblioteca de componentes Angular da StructraLab (UI reutilizável).",
5
5
  "homepage": "https://structralab.com/",
6
6
  "license": "MIT",
@@ -18,6 +18,8 @@ type AlertType = 'error' | 'success' | 'warning' | 'info';
18
18
  * Feedback visual inline (erro, sucesso, aviso, informação). Reutiliza tokens semânticos da lib.
19
19
  */
20
20
  declare class AlertComponent {
21
+ /** Remove o host do fluxo ao fechar (evita faixa em branco com `display: block` vazio). */
22
+ protected get hostHidden(): boolean;
21
23
  type: AlertType;
22
24
  message: string;
23
25
  closable: boolean;