-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(components): implementa alternância no nível de acessibilidade
Implementa alternância no nível de acessibilidade dos componentes de formulário. fixes DTHFUI-10108
- Loading branch information
Showing
222 changed files
with
5,194 additions
and
1,485 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
...s/src/lib/components/po-page-dynamic-edit/enums/po-page-dynamic-edit-actions.size.enum.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/** | ||
* @usedBy PoPageDynamicEditComponent | ||
* | ||
* @description | ||
* | ||
* Enum utilizado para configurar o tamanho (`p-size`) dos fields no componente. | ||
*/ | ||
export enum PoPageDynamicEditActionsSize { | ||
/** Define o tamanho dos fields com altura de 32px, disponível para acessibilidade AA. */ | ||
small = 'small', | ||
|
||
/** Define o tamanho dos fields com altura de 44px. */ | ||
medium = 'medium' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
projects/ui/src/lib/components/po-button-group/enums/po-button-group-size.enum.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/** | ||
* @usedBy PoButtonGroupComponent | ||
* | ||
* @description | ||
* | ||
* Enum utilizado para configurar o tamanho (`p-size`) dos botões do componente. | ||
*/ | ||
export enum PoButtonGroupSize { | ||
/** Define o tamanho pequeno com altura de 32px, disponível para acessibilidade AA. */ | ||
small = 'small', | ||
|
||
/** Define o tamanho padrão com altura de 44px. */ | ||
medium = 'medium' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export * from './po-button-group-item.interface'; | ||
export * from './po-button-group-toggle.enum'; | ||
export * from './enums/po-button-group-toggle.enum'; | ||
export * from './po-button-group.component'; | ||
|
||
export * from './po-button-group.module'; |
Oops, something went wrong.