ngx-sp-infra 6.22.2 → 6.22.4

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.
@@ -13412,13 +13412,13 @@ class ContainerTabsModel {
13412
13412
  constructor() {
13413
13413
  /** Nome da aba que será exibida */
13414
13414
  this.name = "";
13415
- /** Informa se a aba estará visível ou oculta. */
13415
+ /** [OPCIONAL] Informa se a aba estará visível ou oculta. */
13416
13416
  this.visible = true;
13417
- /** Informa se a aba pode ser selecionada. */
13417
+ /** [OPCIONAL] Informa se a aba pode ser selecionada. */
13418
13418
  this.available = true;
13419
- /** Informa o tipo da aba, se é um simples texto ou se será um link para outra rota. */
13419
+ /** [OPCIONAL] Informa o tipo da aba, se é um simples texto ou se será um link para outra rota. */
13420
13420
  this.type = "text";
13421
- /** Caso o 'type' seja um 'link' esta propriedade deve ser informada com a rota a ser redirecionada. */
13421
+ /** [OPCIONAL] Caso o 'type' seja um 'link' esta propriedade deve ser informada com a rota a ser redirecionada. */
13422
13422
  this.linkText = "";
13423
13423
  }
13424
13424
  }