Skip to content

Commit

Permalink
docs: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
andersonmfjr committed Aug 8, 2022
1 parent 064ac07 commit fa40c44
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/articles/guides/create-page.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Vamos criar uma página simples (cabeçalho + barra lateral) em seu projeto.
Supondo que você tenha um módulo separado por página, vamos abrir seu `some-page.module.ts` e importar os componentes de layout necessários:

```ts
import { RouterModule } from '@angular/router'; // we also need angular router for Nebular to function properly
import { RouterModule } from '@angular/router'; // we also need angular router for Beast to function properly
import { NbSidebarModule, NbLayoutModule, NbButtonModule } from '@beast/theme';

...
Expand Down
2 changes: 1 addition & 1 deletion docs/articles/guides/multiple-runtime-themes.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Os estilos do Beast vêm em um arquivo css por padrão. Para poder personalizar
Crie um `themes.scss` em sua pasta `src` e importe um tema de sua escolha:

```scss
// import Nebular Theme System and the default theme
// import Beast Theme System and the default theme
@forward '@beast/theme/styles/theming';
@use '@beast/theme/styles/theming' as *;
@use '@beast/theme/styles/themes/default';
Expand Down
2 changes: 1 addition & 1 deletion docs/articles/security/acl-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ e a aplicação contém dois tipos de recursos que precisam ser protegidos (`new

## Configuração de ACL

Nebular ACL tem uma maneira simples de configurá-lo. Ao registrar um módulo, você pode especificar um conjunto de regras de ACL simplesmente fornecendo-o como uma configuração.
Beast ACL tem uma maneira simples de configurá-lo. Ao registrar um módulo, você pode especificar um conjunto de regras de ACL simplesmente fornecendo-o como uma configuração.

Vamos supor que nossos usuários convidados podem apenas `view` `news` e `comments`, os usuários podem fazer tudo como convidados, mas também podem acessar `create`, `comments`, e os moderadores também podem `create`, `remove`, `news` e `comments`.
Agora, vamos converter isso em um objeto de configuração ACL que o Beast possa entender. Abra o `app.module.ts` e altere a chamada `NbSecurityModule.forRoot()` da seguinte forma:
Expand Down
2 changes: 1 addition & 1 deletion packages-smoke/src/styles.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* You can add global styles to this file, and also import other style files */
// import Nebular Theme System and the default theme
// import Beast Theme System and the default theme
@use '@beast/theme/styles/theming' as *;
@use '@beast/theme/styles/themes/default';
@use '@beast/theme/styles/globals' as *;
Expand Down

0 comments on commit fa40c44

Please sign in to comment.