@po-ui/ng-components 19.20.0 → 19.22.0
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/fesm2022/po-ui-ng-components.mjs +12 -1
- package/fesm2022/po-ui-ng-components.mjs.map +1 -1
- package/lib/components/po-field/po-checkbox/po-checkbox-base.component.d.ts +7 -0
- package/lib/services/po-theme/po-theme.service.d.ts +5 -0
- package/package.json +4 -4
- package/po-ui-ng-components-19.22.0.tgz +0 -0
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-update/v14/index.js +1 -1
- package/schematics/ng-update/v15/index.js +1 -1
- package/schematics/ng-update/v16/index.js +1 -1
- package/schematics/ng-update/v17/index.js +1 -1
- package/schematics/ng-update/v18/index.js +2 -2
- package/schematics/ng-update/v19/index.js +2 -2
- package/schematics/ng-update/v2/index.js +1 -1
- package/schematics/ng-update/v3/index.js +1 -1
- package/schematics/ng-update/v4/index.js +1 -1
- package/schematics/ng-update/v5/index.js +1 -1
- package/schematics/ng-update/v6/index.js +1 -1
- package/po-ui-ng-components-19.20.0.tgz +0 -0
|
@@ -4985,6 +4985,11 @@ class PoThemeService {
|
|
|
4985
4985
|
* Essa configuração é aplicada globalmente apenas quando o nível de acessibilidade for `AA`.
|
|
4986
4986
|
* Caso contrário, o tamanho padrão será `medium`.
|
|
4987
4987
|
*
|
|
4988
|
+
* > Para garantir que o tamanho `small` seja aplicado corretamente a todos os componentes, recomendamos
|
|
4989
|
+
* definir esta configuração **junto com o nível de acessibilidade `AA` na inicialização da aplicação**.
|
|
4990
|
+
* Se for aplicada em tempo de execução, será necessário recarregar a aplicação (`reload`)
|
|
4991
|
+
* para que os estilos sejam aplicados corretamente.
|
|
4992
|
+
*
|
|
4988
4993
|
* @param {boolean} enable Habilita ou desabilita o tamanho `small` globalmente.
|
|
4989
4994
|
*/
|
|
4990
4995
|
setA11yDefaultSizeSmall(enable) {
|
|
@@ -9960,7 +9965,13 @@ class PoCheckboxBaseComponent {
|
|
|
9960
9965
|
* Este evento ativa automaticamente a exibição do ícone de ajuda adicional ao `p-help`.
|
|
9961
9966
|
*/
|
|
9962
9967
|
additionalHelp = new EventEmitter();
|
|
9963
|
-
|
|
9968
|
+
/**
|
|
9969
|
+
* @optional
|
|
9970
|
+
*
|
|
9971
|
+
* @description
|
|
9972
|
+
*
|
|
9973
|
+
* Evento disparado ao sair do campo.
|
|
9974
|
+
*/
|
|
9964
9975
|
blur = new EventEmitter();
|
|
9965
9976
|
/**
|
|
9966
9977
|
* @optional
|