@po-ui/ng-components 21.11.0 → 21.13.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.
Files changed (56) hide show
  1. package/fesm2022/{po-ui-ng-components-po-chart-modal-table.component-CKJDZQRS.mjs → po-ui-ng-components-po-chart-modal-table.component-BPYsbMKd.mjs} +4 -4
  2. package/fesm2022/{po-ui-ng-components-po-chart-modal-table.component-CKJDZQRS.mjs.map → po-ui-ng-components-po-chart-modal-table.component-BPYsbMKd.mjs.map} +1 -1
  3. package/fesm2022/po-ui-ng-components.mjs +2826 -1478
  4. package/fesm2022/po-ui-ng-components.mjs.map +1 -1
  5. package/lib/components/po-button/po-button.component.d.ts +2 -0
  6. package/lib/components/po-calendar/po-calendar-base.component.d.ts +3 -0
  7. package/lib/components/po-calendar/po-calendar-mode.enum.d.ts +3 -1
  8. package/lib/components/po-calendar/po-calendar.component.d.ts +22 -1
  9. package/lib/components/po-chart/interfaces/po-chart-options.interface.d.ts +15 -0
  10. package/lib/components/po-chart/po-chart-base.component.d.ts +2 -0
  11. package/lib/components/po-dropdown/po-dropdown-action.interface.d.ts +7 -6
  12. package/lib/components/po-dropdown/po-dropdown-base.component.d.ts +29 -0
  13. package/lib/components/po-dynamic/po-dynamic-form/interfaces/po-dynamic-form-field.interface.d.ts +89 -10
  14. package/lib/components/po-field/po-datepicker/po-datepicker-base.component.d.ts +30 -0
  15. package/lib/components/po-field/po-datepicker/po-datepicker.component.d.ts +21 -31
  16. package/lib/components/po-field/po-timepicker/enums/po-timepicker-iso-format.enum.d.ts +1 -1
  17. package/lib/components/po-field/po-timepicker/po-timepicker.component.d.ts +22 -2
  18. package/lib/components/po-page/index.d.ts +2 -0
  19. package/lib/components/po-page/interfaces/po-page-action.interface.d.ts +26 -4
  20. package/lib/components/po-page/po-page-content/po-page-content.component.d.ts +10 -4
  21. package/lib/components/po-page/po-page-default/enums/po-page-actions-layout.enum.d.ts +26 -0
  22. package/lib/components/po-page/po-page-default/enums/po-page-header-type.enum.d.ts +25 -0
  23. package/lib/components/po-page/po-page-default/po-page-default-base.component.d.ts +109 -36
  24. package/lib/components/po-page/po-page-default/po-page-default.component.d.ts +8 -2
  25. package/lib/components/po-page/po-page-header/po-page-header-base.component.d.ts +2 -0
  26. package/lib/components/po-page/po-page.module.d.ts +3 -2
  27. package/lib/components/po-popup/po-popup-action.interface.d.ts +32 -57
  28. package/lib/components/po-progress/enums/po-progress-shape.enum.d.ts +13 -0
  29. package/lib/components/po-progress/enums/po-progress-status.enum.d.ts +1 -1
  30. package/lib/components/po-progress/index.d.ts +1 -0
  31. package/lib/components/po-progress/po-progress-bar/po-progress-bar.component.d.ts +1 -0
  32. package/lib/components/po-progress/po-progress-base.component.d.ts +70 -0
  33. package/lib/components/po-progress/po-progress-circle/po-progress-circle.component.d.ts +31 -0
  34. package/lib/components/po-progress/po-progress.component.d.ts +19 -2
  35. package/lib/components/po-timer/po-timer-base.component.d.ts +5 -0
  36. package/lib/components/po-timer/po-timer.component.d.ts +25 -9
  37. package/lib/services/po-theme/helpers/types/po-theme-dark-defaults-AA.constant.d.ts +1 -1
  38. package/lib/services/po-theme/helpers/types/po-theme-dark-defaults.constant.d.ts +1 -1
  39. package/package.json +4 -4
  40. package/po-ui-ng-components-21.13.0.tgz +0 -0
  41. package/schematics/ng-add/index.js +1 -1
  42. package/schematics/ng-update/v14/index.js +1 -1
  43. package/schematics/ng-update/v15/index.js +1 -1
  44. package/schematics/ng-update/v16/index.js +1 -1
  45. package/schematics/ng-update/v17/index.js +1 -1
  46. package/schematics/ng-update/v18/index.js +2 -2
  47. package/schematics/ng-update/v19/index.js +2 -2
  48. package/schematics/ng-update/v2/index.js +1 -1
  49. package/schematics/ng-update/v20/index.js +2 -2
  50. package/schematics/ng-update/v21/index.js +1 -1
  51. package/schematics/ng-update/v3/index.js +1 -1
  52. package/schematics/ng-update/v4/index.js +1 -1
  53. package/schematics/ng-update/v5/index.js +1 -1
  54. package/schematics/ng-update/v6/index.js +1 -1
  55. package/types/po-ui-ng-components.d.ts +656 -178
  56. package/po-ui-ng-components-21.11.0.tgz +0 -0
@@ -2067,115 +2067,90 @@ interface PoPopupAction {
2067
2067
  */
2068
2068
  label: string;
2069
2069
  /**
2070
+ * @optional
2071
+ *
2070
2072
  * @description
2071
2073
  *
2072
2074
  * Ação que será executada, sendo possível passar o nome ou a referência da função.
2073
2075
  *
2074
2076
  * No componente `po-dropdown`, a action também pode ser executada para o agrupador de subitens.
2075
2077
  *
2076
- * > Para que a função seja executada no contexto do elemento filho o mesmo deve ser passado utilizando *bind*.
2077
- *
2078
- * Exemplo: `action: this.myFunction.bind(this)`
2078
+ * > Para que a função seja executada no contexto do componente, utilize *bind*:
2079
+ * `action: this.myFunction.bind(this)`
2079
2080
  */
2080
2081
  action?: Function;
2081
2082
  /**
2083
+ * @optional
2084
+ *
2082
2085
  * @description
2083
2086
  *
2084
- * Define um ícone que será exibido ao lado esquerdo do rótulo.
2087
+ * Ícone exibido ao lado esquerdo do rótulo.
2085
2088
  *
2086
- * É possível usar qualquer um dos ícones da [Biblioteca de ícones](https://po-ui.io/icons). conforme exemplo abaixo:
2087
- * ```
2088
- * <po-component
2089
- * [p-property]="[{ label: 'PHOSPHOR ICON', icon: 'an an-newspaper' }]">
2090
- * </po-component>
2091
- * ```
2089
+ * Aceita ícones da [Biblioteca de ícones](https://po-ui.io/icons), fontes externas (ex: Font Awesome)
2090
+ * ou um `TemplateRef` para ícones customizados.
2092
2091
  *
2093
- * Também é possível utilizar outras fontes de ícones, por exemplo a biblioteca Font Awesome, da seguinte forma:
2094
- * ```
2095
- * <po-component
2096
- * [p-property]="[{ label: 'FA ICON', icon: 'fa fa-icon-podcast' }]">
2097
- * </po-component>
2098
2092
  * ```
2099
- *
2100
- * Outra opção seria a customização do ícone através do `TemplateRef`, conforme exemplo abaixo:
2101
- * component.html:
2102
- * ```
2103
- * <ng-template #iconTemplate>
2104
- * <ion-icon name="heart"></ion-icon>
2105
- * </ng-template>
2106
- *
2107
- * <po-component [p-property]="myProperty"></po-component>
2108
- * ```
2109
- * component.ts:
2110
- * ```
2111
- * @ViewChild('iconTemplate', { static: true } ) iconTemplate : TemplateRef<void>;
2112
- *
2113
- * myProperty = [
2114
- * {
2115
- * label: 'FA ICON',
2116
- * icon: this.iconTemplate
2117
- * }
2118
- * ];
2093
+ * { label: 'Ação', icon: 'an an-newspaper' }
2119
2094
  * ```
2120
2095
  */
2121
2096
  icon?: string | TemplateRef<void>;
2122
2097
  /**
2098
+ * @optional
2099
+ *
2123
2100
  * @description
2124
2101
  *
2125
2102
  * Atribui uma linha separadora acima do item.
2126
- *
2127
- * */
2103
+ */
2128
2104
  separator?: boolean;
2129
2105
  /**
2130
- * @description
2131
- *
2132
- * Função que deve retornar um booleano para habilitar ou desabilitar a ação para o registro selecionado.
2106
+ * @optional
2133
2107
  *
2134
- * Também é possível informar diretamente um valor booleano que vai habilitar ou desabilitar a ação para todos os registros.
2108
+ * @description
2135
2109
  *
2110
+ * Desabilita a ação. Aceita um valor booleano ou uma função que retorna booleano.
2136
2111
  */
2137
2112
  disabled?: boolean | Function;
2138
2113
  /**
2114
+ * @optional
2115
+ *
2139
2116
  * @description
2140
2117
  *
2141
- * Define a cor do item, sendo `default` o padrão.
2118
+ * Define a cor do item.
2142
2119
  *
2143
2120
  * Valores válidos:
2144
2121
  * - `default`
2145
- * - `danger` - indicado para ações exclusivas (excluir, sair).
2122
+ * - `danger`
2146
2123
  */
2147
2124
  type?: string;
2148
2125
  /**
2126
+ * @optional
2127
+ *
2149
2128
  * @description
2150
2129
  *
2151
- * URL utilizada para redirecionamento das páginas.
2130
+ * URL para redirecionamento. Aceita rotas internas e links externos.
2152
2131
  *
2153
- * No componente `po-dropdown`, a url também pode ser configurada para o agrupador de subitens.
2154
- * Entretanto, quando a `url` é informada em um agrupador, o clique **não abrirá os subitens**, pois o item será
2155
- * tratado como um link e o redirecionamento terá prioridade sobre a exibição da lista.
2132
+ * No componente `po-dropdown`, quando informada em um agrupador com `subItems`, o clique
2133
+ * redireciona ao invés de abrir os subitens.
2156
2134
  *
2135
+ * > Quando informada, tem prioridade sobre a propriedade `action`.
2157
2136
  */
2158
2137
  url?: string;
2159
2138
  /**
2139
+ * @optional
2140
+ *
2160
2141
  * @description
2161
2142
  *
2162
2143
  * Define se a ação está selecionada.
2163
- *
2164
2144
  */
2165
2145
  selected?: boolean;
2166
2146
  /**
2167
- * @description
2168
- *
2169
- * Define se a ação será visível.
2170
- *
2171
- * > Caso o valor não seja especificado a ação será visível.
2172
- *
2173
- * Opções para tornar a ação visível ou não:
2147
+ * @optional
2174
2148
  *
2175
- * - Função que deve retornar um booleano.
2149
+ * @description
2176
2150
  *
2177
- * - Informar diretamente um valor booleano.
2151
+ * Define a visibilidade da ação. Aceita um valor booleano ou uma função que retorna booleano.
2178
2152
  *
2153
+ * @default `true`
2179
2154
  */
2180
2155
  visible?: boolean | Function;
2181
2156
  $id?: string;
@@ -2184,7 +2159,8 @@ interface PoPopupAction {
2184
2159
 
2185
2160
  /**
2186
2161
  * @description
2187
- * Interface do componente po-dropdown
2162
+ *
2163
+ * Interface para as ações do componente `po-dropdown`.
2188
2164
  *
2189
2165
  * @docsExtends PoPopupAction
2190
2166
  *
@@ -2192,13 +2168,13 @@ interface PoPopupAction {
2192
2168
  */
2193
2169
  interface PoDropdownAction extends PoPopupAction {
2194
2170
  /**
2195
- * Array de ações (`PoDropdownAction`) usado para criar agrupadores de subitens.
2171
+ * @optional
2196
2172
  *
2197
- * - Permite a criação de menus aninhados (submenus).
2173
+ * @description
2174
+ *
2175
+ * Array de ações (`PoDropdownAction`) usado para criar agrupadores de subitens (submenus).
2198
2176
  *
2199
- * > Boas práticas de desenvolvimento:
2200
- * Recomenda-se limitar a navegação a, no máximo, três níveis hierárquicos.
2201
- * Isso evita sobrecarga cognitiva, facilita a memorização da estrutura e garante uma melhor experiência de uso.
2177
+ * > Recomenda-se limitar a navegação a, no máximo, três níveis hierárquicos.
2202
2178
  */
2203
2179
  subItems?: Array<PoDropdownAction>;
2204
2180
  }
@@ -2967,7 +2943,9 @@ declare class PoButtonBaseComponent {
2967
2943
  * </example>
2968
2944
  */
2969
2945
  declare class PoButtonComponent extends PoButtonBaseComponent {
2946
+ elementRef: ElementRef;
2970
2947
  buttonElement: ElementRef;
2948
+ constructor(elementRef: ElementRef);
2971
2949
  onBlur(): void;
2972
2950
  /**
2973
2951
  * Função que atribui foco ao componente.
@@ -4748,7 +4726,9 @@ declare class PoDateService {
4748
4726
  */
4749
4727
  declare enum PoCalendarMode {
4750
4728
  /** Modo de seleção de intervalo (data inicial e final). */
4751
- Range = "range"
4729
+ Range = "range",
4730
+ MonthYear = "month-year",
4731
+ Year = "year"
4752
4732
  }
4753
4733
 
4754
4734
  /**
@@ -4972,6 +4952,9 @@ declare class PoCalendarBaseComponent {
4972
4952
  set mode(value: PoCalendarMode);
4973
4953
  get mode(): PoCalendarMode;
4974
4954
  get isRange(): boolean;
4955
+ get isMonthYear(): boolean;
4956
+ get isYear(): boolean;
4957
+ yearRangeLimit?: number;
4975
4958
  headerTemplate?: TemplateRef<any>;
4976
4959
  /**
4977
4960
  * @optional
@@ -5045,7 +5028,7 @@ declare class PoCalendarBaseComponent {
5045
5028
  private verifyActivateDate;
5046
5029
  private applySizeBasedOnA11y;
5047
5030
  static ɵfac: i0.ɵɵFactoryDeclaration<PoCalendarBaseComponent, never>;
5048
- static ɵdir: i0.ɵɵDirectiveDeclaration<PoCalendarBaseComponent, never, never, { "locale": { "alias": "p-locale"; "required": false; }; "maxDate": { "alias": "p-max-date"; "required": false; }; "minDate": { "alias": "p-min-date"; "required": false; }; "mode": { "alias": "p-mode"; "required": false; }; "headerTemplate": { "alias": "p-header-template"; "required": false; }; "rangePresets": { "alias": "p-range-presets"; "required": false; }; "rangePresetOptions": { "alias": "p-range-preset-options"; "required": false; }; "rangePresetsOrder": { "alias": "p-range-presets-order"; "required": false; }; "size": { "alias": "p-size"; "required": false; }; "widthWithPresets": { "alias": "p-width-with-presets"; "required": false; }; }, { "change": "p-change"; "changeMonthYear": "p-change-month-year"; "close": "p-close"; }, never, never, true, never>;
5031
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PoCalendarBaseComponent, never, never, { "locale": { "alias": "p-locale"; "required": false; }; "maxDate": { "alias": "p-max-date"; "required": false; }; "minDate": { "alias": "p-min-date"; "required": false; }; "mode": { "alias": "p-mode"; "required": false; }; "yearRangeLimit": { "alias": "p-year-range-limit"; "required": false; }; "headerTemplate": { "alias": "p-header-template"; "required": false; }; "rangePresets": { "alias": "p-range-presets"; "required": false; }; "rangePresetOptions": { "alias": "p-range-preset-options"; "required": false; }; "rangePresetsOrder": { "alias": "p-range-presets-order"; "required": false; }; "size": { "alias": "p-size"; "required": false; }; "widthWithPresets": { "alias": "p-width-with-presets"; "required": false; }; }, { "change": "p-change"; "changeMonthYear": "p-change-month-year"; "close": "p-close"; }, never, never, true, never>;
5049
5032
  }
5050
5033
 
5051
5034
  /**
@@ -5074,10 +5057,19 @@ declare class PoCalendarBaseComponent {
5074
5057
  * </example>
5075
5058
  */
5076
5059
  declare class PoCalendarComponent extends PoCalendarBaseComponent implements OnInit, OnChanges, DoCheck {
5060
+ monthOptions: QueryList<PoButtonComponent>;
5061
+ yearOptions: QueryList<PoButtonComponent>;
5077
5062
  private readonly changeDetector;
5078
5063
  private readonly poCalendarLangService;
5079
5064
  hoverValue: Date;
5080
5065
  displayToClean: string;
5066
+ displayMonths: Array<string>;
5067
+ displayYears: Array<number>;
5068
+ focusedIndex: number;
5069
+ selectedIndexMonth: number | null;
5070
+ selectedIndexYear: number | null;
5071
+ selectedMonth: number | null;
5072
+ selectedYear: number | null;
5081
5073
  private readonly _isRange;
5082
5074
  private readonly _rangePresetsValue;
5083
5075
  private readonly _rangePresetOptionsValue;
@@ -5090,6 +5082,15 @@ declare class PoCalendarComponent extends PoCalendarBaseComponent implements OnI
5090
5082
  ngOnInit(): void;
5091
5083
  ngOnChanges(changes: SimpleChanges): void;
5092
5084
  ngDoCheck(): void;
5085
+ isMonthDisabled(monthIndex: number): boolean;
5086
+ isYearDisabled(year: number): boolean;
5087
+ onKeydownMonth(event: KeyboardEvent, index: number): void;
5088
+ onKeydownYear(event: KeyboardEvent, index: number): void;
5089
+ selectMonth(index: number, event?: KeyboardEvent, selected?: boolean): void;
5090
+ selectYear(index: number, event?: KeyboardEvent, selected?: boolean, year?: any): void;
5091
+ private getMonthOptions;
5092
+ private getYearOptions;
5093
+ private initializeYearAndMonthMode;
5093
5094
  getActivateDate(partType: any): any;
5094
5095
  getValue(partType: any): any;
5095
5096
  onSelectDate(selectedDate: any, partType?: any): void;
@@ -5121,6 +5122,8 @@ declare class PoCalendarComponent extends PoCalendarBaseComponent implements OnI
5121
5122
  private convertDateToISO;
5122
5123
  private convertDateFromIso;
5123
5124
  private updateModel;
5125
+ private setMonth;
5126
+ private setYear;
5124
5127
  private writeDate;
5125
5128
  static ɵfac: i0.ɵɵFactoryDeclaration<PoCalendarComponent, never>;
5126
5129
  static ɵcmp: i0.ɵɵComponentDeclaration<PoCalendarComponent, "po-calendar", never, {}, {}, never, never, false, never>;
@@ -11523,6 +11526,7 @@ declare class PoDropdownBaseComponent {
11523
11526
  private _disabled;
11524
11527
  private _size?;
11525
11528
  private _initialSize?;
11529
+ private _position;
11526
11530
  /** Lista de ações que serão exibidas no componente. */
11527
11531
  set actions(value: Array<PoDropdownAction>);
11528
11532
  get actions(): Array<PoDropdownAction>;
@@ -11553,10 +11557,38 @@ declare class PoDropdownBaseComponent {
11553
11557
  */
11554
11558
  set size(value: string);
11555
11559
  get size(): string;
11560
+ /**
11561
+ * @optional
11562
+ *
11563
+ * @description
11564
+ *
11565
+ * Define a posição preferencial de abertura do popup do dropdown em relação ao botão.
11566
+ *
11567
+ * Posições válidas:
11568
+ * - `right`: No lado direito.
11569
+ * - `right-bottom`: No lado direito inferior.
11570
+ * - `right-top`: No lado direito superior.
11571
+ * - `bottom`: Abaixo.
11572
+ * - `bottom-left`: Abaixo e à esquerda (padrão).
11573
+ * - `bottom-right`: Abaixo e à direita.
11574
+ * - `left`: No lado esquerdo.
11575
+ * - `left-top`: No lado esquerdo superior.
11576
+ * - `left-bottom`: No lado esquerdo inferior.
11577
+ * - `top`: Acima.
11578
+ * - `top-right`: Acima e à direita.
11579
+ * - `top-left`: Acima e à esquerda.
11580
+ *
11581
+ * > O popup será rotacionado automaticamente caso não caiba na posição definida.
11582
+ *
11583
+ * @default `bottom-left`
11584
+ */
11585
+ set position(value: string);
11586
+ get position(): string;
11587
+ get popupCustomPositions(): Array<string>;
11556
11588
  protected onThemeChange(): void;
11557
11589
  private applySizeBasedOnA11y;
11558
11590
  static ɵfac: i0.ɵɵFactoryDeclaration<PoDropdownBaseComponent, never>;
11559
- static ɵdir: i0.ɵɵDirectiveDeclaration<PoDropdownBaseComponent, never, never, { "label": { "alias": "p-label"; "required": false; }; "actions": { "alias": "p-actions"; "required": false; }; "disabled": { "alias": "p-disabled"; "required": false; }; "size": { "alias": "p-size"; "required": false; }; }, {}, never, never, true, never>;
11591
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PoDropdownBaseComponent, never, never, { "label": { "alias": "p-label"; "required": false; }; "actions": { "alias": "p-actions"; "required": false; }; "disabled": { "alias": "p-disabled"; "required": false; }; "size": { "alias": "p-size"; "required": false; }; "position": { "alias": "p-position"; "required": false; }; }, {}, never, never, true, never>;
11560
11592
  }
11561
11593
 
11562
11594
  /**
@@ -12800,6 +12832,21 @@ interface PoChartOptions {
12800
12832
  * @default `center`
12801
12833
  */
12802
12834
  legendPosition?: 'left' | 'center' | 'right';
12835
+ /**
12836
+ * @optional
12837
+ *
12838
+ * @description
12839
+ *
12840
+ * Define o tipo da legenda.
12841
+ *
12842
+ * - `plain`: exibe todas as legendas de forma estática.
12843
+ * - `scroll`: habilita rolagem quando a quantidade de legendas exceder o espaço disponível no gráfico.
12844
+ *
12845
+ * > Propriedade inválida para o gráfico do tipo `Gauge`.
12846
+ *
12847
+ * @default `plain`
12848
+ */
12849
+ legendType?: 'plain' | 'scroll';
12803
12850
  /**
12804
12851
  * @optional
12805
12852
  *
@@ -13171,6 +13218,8 @@ interface PoChartSerie {
13171
13218
  * | `--font-size-grid` | Tamanho da fonte usada nos valores dos eixos | `var(--font-size-xs)` |
13172
13219
  * | `--font-weight-grid` | Peso da fonte usada nos valores dos eixos | `var(--font-weight-normal)` |
13173
13220
  * | `--color-legend` | Cor da fonte da legenda | `var(--color-neutral-dark-70)` |
13221
+ * | `--color-legend-scroll-icon-active` | Cor do ícone de scroll da legenda no estado ativo, pro tipo `scroll` | `var(--color-action-default)` |
13222
+ * | `--color-legend-scroll-icon-inactive` | Cor do ícone de scroll da legenda no estado inativo, pro tipo `scroll` | `var(--color-action-disabled)` |
13174
13223
  * | `--border-radius-bar` | Tamanho da borda nos graficos `Bar` e `Column` | `var(--border-radius-none)` |
13175
13224
  * | `--border-color` | Cor da borda do gráfico nos Gráficos `Donut` e `Pie` | `var(--color-neutral-light-00)` |
13176
13225
  * | `--color-hightlight-value` | Cor do valor de destaque nos Gráficos `Donut` e `Gauge` | `var(--color-neutral-dark-70)` |
@@ -14214,6 +14263,28 @@ declare abstract class PoDatepickerBaseComponent implements ControlValueAccessor
14214
14263
  protected languageService: PoLanguageService;
14215
14264
  protected cd: ChangeDetectorRef;
14216
14265
  additionalHelpEventTrigger: string | undefined;
14266
+ /** Rótulo do campo. */
14267
+ label?: string;
14268
+ /** Texto de apoio do campo. */
14269
+ help?: string;
14270
+ /**
14271
+ * Define o modo de operação do datepicker.
14272
+ *
14273
+ * Permite configurar o componente para seleção de:
14274
+ * - Mês e ano (`month-year`);
14275
+ * - Apenas ano (`year`).
14276
+ */
14277
+ mode?: 'month-year' | 'year';
14278
+ /**
14279
+ * Define o limite de anos exibidos nas variações `month-year` e `year`,
14280
+ * considerando a data atual como referência.
14281
+ *
14282
+ * O valor informado determina o intervalo de anos anterior e posterior
14283
+ * à data corrente que será disponibilizado para seleção.
14284
+ *
14285
+ * @default 150
14286
+ */
14287
+ yearRangeLimit?: number;
14217
14288
  /**
14218
14289
  *
14219
14290
  * @deprecated v23.x.x use `p-helper`
@@ -14512,6 +14583,8 @@ declare abstract class PoDatepickerBaseComponent implements ControlValueAccessor
14512
14583
  * - `mm/dd/yyyy`
14513
14584
  * - `yyyy/mm/dd`
14514
14585
  *
14586
+ * Propriedade incompatível com as variações month-year e year.
14587
+ *
14515
14588
  * @default `dd/mm/yyyy`
14516
14589
  */
14517
14590
  set format(value: string);
@@ -14524,6 +14597,8 @@ declare abstract class PoDatepickerBaseComponent implements ControlValueAccessor
14524
14597
  * Padrão de formatação para saída do *model*, independentemente do formato de entrada.
14525
14598
  *
14526
14599
  * > Veja os valores válidos no *enum* `PoDatepickerIsoFormat`.
14600
+ *
14601
+ * Propriedade incompatível com as variações month-year e year.
14527
14602
  */
14528
14603
  set isoFormat(value: PoDatepickerIsoFormat);
14529
14604
  get isoFormat(): PoDatepickerIsoFormat;
@@ -14582,6 +14657,10 @@ declare abstract class PoDatepickerBaseComponent implements ControlValueAccessor
14582
14657
  validate(c: AbstractControl): {
14583
14658
  [key: string]: any;
14584
14659
  };
14660
+ private isMonthYearOrYearInvalid;
14661
+ private isDateRangeValidForMode;
14662
+ private validateMonthYearRange;
14663
+ private validateYearRange;
14585
14664
  protected validateModel(model: any): void;
14586
14665
  protected buildMask(format?: string): PoMask;
14587
14666
  formatTimezoneAndHour(offset: number): void;
@@ -14589,36 +14668,11 @@ declare abstract class PoDatepickerBaseComponent implements ControlValueAccessor
14589
14668
  abstract writeValue(value: any): void;
14590
14669
  abstract refreshValue(value: Date): void;
14591
14670
  static ɵfac: i0.ɵɵFactoryDeclaration<PoDatepickerBaseComponent, never>;
14592
- static ɵdir: i0.ɵɵDirectiveDeclaration<PoDatepickerBaseComponent, never, never, { "additionalHelpEventTrigger": { "alias": "additionalHelpEventTrigger"; "required": false; }; "additionalHelpTooltip": { "alias": "p-additional-help-tooltip"; "required": false; }; "autoFocus": { "alias": "p-auto-focus"; "required": false; }; "compactLabel": { "alias": "p-compact-label"; "required": false; "isSignal": true; }; "errorAsync": { "alias": "p-error-async"; "required": false; }; "name": { "alias": "name"; "required": false; }; "optional": { "alias": "p-optional"; "required": false; }; "errorPattern": { "alias": "p-error-pattern"; "required": false; }; "errorLimit": { "alias": "p-error-limit"; "required": false; }; "showErrorMessageRequired": { "alias": "p-required-field-error-message"; "required": false; }; "poHelperComponent": { "alias": "p-helper"; "required": false; "isSignal": true; }; "labelTextWrap": { "alias": "p-label-text-wrap"; "required": false; "isSignal": true; }; "noAutocomplete": { "alias": "p-no-autocomplete"; "required": false; }; "placeholder": { "alias": "p-placeholder"; "required": false; }; "setDisabled": { "alias": "p-disabled"; "required": false; }; "setReadonly": { "alias": "p-readonly"; "required": false; }; "setRequired": { "alias": "p-required"; "required": false; }; "showRequired": { "alias": "p-show-required"; "required": false; }; "size": { "alias": "p-size"; "required": false; }; "setClean": { "alias": "p-clean"; "required": false; }; "minDate": { "alias": "p-min-date"; "required": false; }; "maxDate": { "alias": "p-max-date"; "required": false; }; "format": { "alias": "p-format"; "required": false; }; "isoFormat": { "alias": "p-iso-format"; "required": false; }; "locale": { "alias": "p-locale"; "required": false; }; "loading": { "alias": "p-loading"; "required": false; }; "appendBox": { "alias": "p-append-in-body"; "required": false; }; }, { "additionalHelp": "p-additional-help"; "onblur": "p-blur"; "onchange": "p-change"; "keydown": "p-keydown"; }, never, never, true, never>;
14671
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PoDatepickerBaseComponent, never, never, { "additionalHelpEventTrigger": { "alias": "additionalHelpEventTrigger"; "required": false; }; "label": { "alias": "p-label"; "required": false; }; "help": { "alias": "p-help"; "required": false; }; "mode": { "alias": "p-mode"; "required": false; }; "yearRangeLimit": { "alias": "p-year-range-limit"; "required": false; }; "additionalHelpTooltip": { "alias": "p-additional-help-tooltip"; "required": false; }; "autoFocus": { "alias": "p-auto-focus"; "required": false; }; "compactLabel": { "alias": "p-compact-label"; "required": false; "isSignal": true; }; "errorAsync": { "alias": "p-error-async"; "required": false; }; "name": { "alias": "name"; "required": false; }; "optional": { "alias": "p-optional"; "required": false; }; "errorPattern": { "alias": "p-error-pattern"; "required": false; }; "errorLimit": { "alias": "p-error-limit"; "required": false; }; "showErrorMessageRequired": { "alias": "p-required-field-error-message"; "required": false; }; "poHelperComponent": { "alias": "p-helper"; "required": false; "isSignal": true; }; "labelTextWrap": { "alias": "p-label-text-wrap"; "required": false; "isSignal": true; }; "noAutocomplete": { "alias": "p-no-autocomplete"; "required": false; }; "placeholder": { "alias": "p-placeholder"; "required": false; }; "setDisabled": { "alias": "p-disabled"; "required": false; }; "setReadonly": { "alias": "p-readonly"; "required": false; }; "setRequired": { "alias": "p-required"; "required": false; }; "showRequired": { "alias": "p-show-required"; "required": false; }; "size": { "alias": "p-size"; "required": false; }; "setClean": { "alias": "p-clean"; "required": false; }; "minDate": { "alias": "p-min-date"; "required": false; }; "maxDate": { "alias": "p-max-date"; "required": false; }; "format": { "alias": "p-format"; "required": false; }; "isoFormat": { "alias": "p-iso-format"; "required": false; }; "locale": { "alias": "p-locale"; "required": false; }; "loading": { "alias": "p-loading"; "required": false; }; "appendBox": { "alias": "p-append-in-body"; "required": false; }; }, { "additionalHelp": "p-additional-help"; "onblur": "p-blur"; "onchange": "p-change"; "keydown": "p-keydown"; }, never, never, true, never>;
14593
14672
  static ngAcceptInputType_autoFocus: any;
14594
14673
  static ngAcceptInputType_appendBox: any;
14595
14674
  }
14596
14675
 
14597
- /**
14598
- * @docsExtends PoDatepickerBaseComponent
14599
- *
14600
- * @example
14601
- *
14602
- * <example name="po-datepicker-basic" title="PO Datepicker Basic">
14603
- * <file name="sample-po-datepicker-basic/sample-po-datepicker-basic.component.html"> </file>
14604
- * <file name="sample-po-datepicker-basic/sample-po-datepicker-basic.component.ts"> </file>
14605
- * </example>
14606
- *
14607
- * <example name="po-datepicker-labs" title="PO Datepicker Labs">
14608
- * <file name="sample-po-datepicker-labs/sample-po-datepicker-labs.component.html"> </file>
14609
- * <file name="sample-po-datepicker-labs/sample-po-datepicker-labs.component.ts"> </file>
14610
- * </example>
14611
- *
14612
- * <example name="po-datepicker-airfare" title="PO Datepicker - Airfare">
14613
- * <file name="sample-po-datepicker-airfare/sample-po-datepicker-airfare.component.html"> </file>
14614
- * <file name="sample-po-datepicker-airfare/sample-po-datepicker-airfare.component.ts"> </file>
14615
- * </example>
14616
- *
14617
- * <example name="po-datepicker-airfare-reactive-form" title="PO Datepicker - Airfare Reactive Form">
14618
- * <file name="sample-po-datepicker-airfare-reactive-form/sample-po-datepicker-airfare-reactive-form.component.html"> </file>
14619
- * <file name="sample-po-datepicker-airfare-reactive-form/sample-po-datepicker-airfare-reactive-form.component.ts"> </file>
14620
- * </example>
14621
- */
14622
14676
  declare class PoDatepickerComponent extends PoDatepickerBaseComponent implements AfterViewInit, OnDestroy, OnChanges {
14623
14677
  private readonly controlPosition;
14624
14678
  private readonly renderer;
@@ -14628,10 +14682,6 @@ declare class PoDatepickerComponent extends PoDatepickerBaseComponent implements
14628
14682
  inputEl: ElementRef;
14629
14683
  iconClean: ElementRef<HTMLElement>;
14630
14684
  helperEl?: PoHelperComponent;
14631
- /** Rótulo do campo. */
14632
- label?: string;
14633
- /** Texto de apoio do campo. */
14634
- help?: string;
14635
14685
  displayAdditionalHelp: boolean;
14636
14686
  el: ElementRef;
14637
14687
  hour: string;
@@ -14676,7 +14726,7 @@ declare class PoDatepickerComponent extends PoDatepickerBaseComponent implements
14676
14726
  getAdditionalHelpTooltip(): string;
14677
14727
  togglePicker(focusInput?: boolean): void;
14678
14728
  closeCalendar(focusInput?: boolean): void;
14679
- dateSelected(event?: string): void;
14729
+ dateSelected(event?: any): void;
14680
14730
  wasClickedOnPicker(event: any): void;
14681
14731
  hasInvalidClass(): boolean;
14682
14732
  getErrorPattern(): string;
@@ -14686,7 +14736,7 @@ declare class PoDatepickerComponent extends PoDatepickerBaseComponent implements
14686
14736
  eventOnClick($event: any): void;
14687
14737
  onKeyDown(event: KeyboardEvent): void;
14688
14738
  onKeyPress(event: any): void;
14689
- formatToDate(value: Date): string;
14739
+ formatToDate(value: any): string;
14690
14740
  refreshValue(value: Date): void;
14691
14741
  /**
14692
14742
  * Método que exibe `p-helper` ou executa a ação definida em `p-helper{eventOnClick}` ou em `p-additionalHelp`.
@@ -14714,13 +14764,32 @@ declare class PoDatepickerComponent extends PoDatepickerBaseComponent implements
14714
14764
  * ```
14715
14765
  */
14716
14766
  showAdditionalHelp(): boolean;
14767
+ private handleSpecialModes;
14768
+ private processValue;
14769
+ private handleDateInstance;
14770
+ private handleIsoString;
14771
+ private clearValue;
14772
+ private resetInput;
14773
+ private finalizeWrite;
14717
14774
  writeValue(value: any): void;
14718
14775
  isValidDateIso(value: string): boolean;
14719
14776
  isValidExtendedIso(value: any): boolean;
14720
14777
  hasOverlayClass(element: any): any;
14721
14778
  verifyErrorAsync(value: any): void;
14722
14779
  verifyMobile(): RegExpMatchArray;
14780
+ private handleMonthYearKeyup;
14781
+ private handleYearKeyup;
14782
+ private handleMonthYearBlur;
14783
+ private handleYearBlur;
14784
+ private applyMonthYearValue;
14785
+ private applyYearValue;
14786
+ private parseMonthYearInput;
14787
+ private syncCalendarMonthYear;
14788
+ private syncCalendarYear;
14789
+ private writeMonthYearValue;
14790
+ private writeYearValue;
14723
14791
  private controlChangeEmitter;
14792
+ private isValidInputForMode;
14724
14793
  private hasAttrCalendar;
14725
14794
  private initializeListeners;
14726
14795
  private isAdditionalHelpEventTriggered;
@@ -14740,11 +14809,11 @@ declare class PoDatepickerComponent extends PoDatepickerBaseComponent implements
14740
14809
  helperSettings?: any;
14741
14810
  };
14742
14811
  static ɵfac: i0.ɵɵFactoryDeclaration<PoDatepickerComponent, never>;
14743
- static ɵcmp: i0.ɵɵComponentDeclaration<PoDatepickerComponent, "po-datepicker", never, { "label": { "alias": "p-label"; "required": false; }; "help": { "alias": "p-help"; "required": false; }; }, {}, never, never, false, never>;
14812
+ static ɵcmp: i0.ɵɵComponentDeclaration<PoDatepickerComponent, "po-datepicker", never, {}, {}, never, never, false, never>;
14744
14813
  }
14745
14814
 
14746
14815
  /**
14747
- * @usedBy PoTimepickerComponent
14816
+ * @usedBy PoTimepickerComponent, PoDynamicFormComponent
14748
14817
  *
14749
14818
  * @description
14750
14819
  *
@@ -14995,6 +15064,11 @@ declare class PoTimerBaseComponent implements ControlValueAccessor {
14995
15064
  protected formatValue(value: number): string;
14996
15065
  /** Verifica se uma hora está desabilitada com base nos limites min/max. */
14997
15066
  protected isHourDisabled(hour: number): boolean;
15067
+ /**
15068
+ * Verifica se um período (AM/PM) está completamente desabilitado.
15069
+ * Retorna `true` quando todas as horas do período estão fora do range min/max.
15070
+ */
15071
+ protected isPeriodDisabled(targetPeriod: string): boolean;
14998
15072
  /** Verifica se um minuto está desabilitado com base nos limites min/max e hora selecionada. */
14999
15073
  protected isMinuteDisabled(minute: number): boolean;
15000
15074
  /** Verifica se um segundo está desabilitado com base nos limites min/max, hora e minuto selecionados. */
@@ -15055,10 +15129,10 @@ type PoTimerColumnType = 'hour' | 'minute' | 'second' | 'period';
15055
15129
  * </example>
15056
15130
  */
15057
15131
  declare class PoTimerComponent extends PoTimerBaseComponent implements OnInit, OnChanges, AfterViewInit, AfterViewChecked, OnDestroy {
15058
- hourCells: QueryList<ElementRef>;
15059
- minuteCells: QueryList<ElementRef>;
15060
- secondCells: QueryList<ElementRef>;
15061
- periodCells: QueryList<ElementRef>;
15132
+ hourCells: QueryList<PoButtonComponent>;
15133
+ minuteCells: QueryList<PoButtonComponent>;
15134
+ secondCells: QueryList<PoButtonComponent>;
15135
+ periodCells: QueryList<PoButtonComponent>;
15062
15136
  hourItemsRefs: QueryList<ElementRef<HTMLElement>>;
15063
15137
  minuteItemsRefs: QueryList<ElementRef<HTMLElement>>;
15064
15138
  secondItemsRefs: QueryList<ElementRef<HTMLElement>>;
@@ -15093,6 +15167,8 @@ declare class PoTimerComponent extends PoTimerBaseComponent implements OnInit, O
15093
15167
  activeDescendantIds: Record<PoTimerColumnType, string>;
15094
15168
  disabledMinuteCache: Set<number>;
15095
15169
  disabledSecondCache: Set<number>;
15170
+ private ariaSyncNeeded;
15171
+ private cachedCellPairs;
15096
15172
  constructor();
15097
15173
  ngOnInit(): void;
15098
15174
  ngOnChanges(changes: SimpleChanges): void;
@@ -15164,7 +15240,10 @@ declare class PoTimerComponent extends PoTimerBaseComponent implements OnInit, O
15164
15240
  * o foco diretamente pois nao usam o padrao de roving focus.
15165
15241
  */
15166
15242
  private getVisibleColumnTypes;
15167
- private getCellsForType;
15243
+ private updateAllCachedCellPairs;
15244
+ private subscribeToCellChanges;
15245
+ private updateCachedCellPairs;
15246
+ private markAriaSyncNeeded;
15168
15247
  /** Atualiza aria-activedescendant para o indice focado no displayArray. */
15169
15248
  private updateActiveDescendant;
15170
15249
  /**
@@ -15211,16 +15290,26 @@ declare class PoTimerComponent extends PoTimerBaseComponent implements OnInit, O
15211
15290
  * ele substitui o item equivalente na secao fixa para manter exatamente
15212
15291
  * sourceLength itens com role="option".
15213
15292
  *
15214
- * Duplicatas recebem aria-hidden="true" e role="none" no <button> nativo
15215
- * (nao apenas no host <po-button>), pois NVDA ignora aria-hidden em
15216
- * elementos customizados e conta <button> filhos de role="listbox".
15293
+ * Todos os botoes nativos recebem os atributos ARIA corretos
15294
+ * (role, aria-selected, aria-setsize, aria-posinset) propagados
15295
+ * dos data-attributes do host <po-button>.
15296
+ *
15297
+ * Nao usa `inert` — o infinity scroll repete o array 3x e marcar
15298
+ * secoes como inert causava botoes desabilitados durante transicoes
15299
+ * de scroll. Em vez disso, duplicatas recebem role="none" e
15300
+ * aria-hidden="true" no <button> nativo para que NVDA nao as conte,
15301
+ * mas permanecem clicaveis visualmente.
15302
+ *
15303
+ * A secao canonica e determinada pela secao do item focado,
15304
+ * garantindo que exatamente sourceLength itens tenham role="option".
15217
15305
  */
15218
15306
  private syncAriaToNativeButtons;
15219
15307
  /**
15220
15308
  * Determina se um item do displayArray e canonico para fins de ARIA.
15221
15309
  *
15222
15310
  * - Sem infinity scroll: todos sao canonicos.
15223
- * - Com infinity scroll: a secao que contem o item focado e canonica.
15311
+ * - Com infinity scroll: apenas itens na secao canonica (determinada
15312
+ * pelo offset visivel) recebem role="option".
15224
15313
  */
15225
15314
  private isCanonicalDisplayItem;
15226
15315
  /**
@@ -15673,6 +15762,7 @@ declare class PoTimepickerComponent extends PoTimepickerBaseComponent implements
15673
15762
  get hourPlaceholder(): string;
15674
15763
  get minutePlaceholder(): string;
15675
15764
  get secondPlaceholder(): string;
15765
+ get isPlaceholder(): boolean;
15676
15766
  private get customPlaceholderSegments();
15677
15767
  private getCustomPlaceholderSegment;
15678
15768
  onHostFocusOut(event: FocusEvent): void;
@@ -15732,6 +15822,7 @@ declare class PoTimepickerComponent extends PoTimepickerBaseComponent implements
15732
15822
  writeValue(value: any): void;
15733
15823
  verifyMobile(): RegExpMatchArray;
15734
15824
  handleCleanKeyboardTab(event: KeyboardEvent): void;
15825
+ handleTimepickerButtonKeyboardTab(event: KeyboardEvent): void;
15735
15826
  onTimerKeyDown(event: KeyboardEvent): void;
15736
15827
  onTimerBoundaryTab(payload: {
15737
15828
  direction: 'forward' | 'backward';
@@ -15758,9 +15849,22 @@ declare class PoTimepickerComponent extends PoTimepickerBaseComponent implements
15758
15849
  private getDefaultPeriodDisplay;
15759
15850
  /** Sincroniza os valores dos elementos input nativos com as propriedades de exibicao. */
15760
15851
  private syncSegmentInputElements;
15761
- /** Avanca o foco para o proximo input de segmento. */
15852
+ /**
15853
+ * Avança o foco para o próximo input de segmento ou elemento focável interno.
15854
+ * Retorna `true` se o foco foi movido, `false` se não há próximo elemento focável.
15855
+ */
15762
15856
  private advanceToNextSegment;
15763
- /** Avanca o foco para o input de segmento anterior. */
15857
+ /**
15858
+ * Tenta focar o botão de limpar ou o botão do timer.
15859
+ * Retorna `true` se o foco foi movido, `false` se nenhum elemento está focável.
15860
+ */
15861
+ private focusCleanOrButton;
15862
+ private focusPreviousPeriodSegment;
15863
+ private focusNextPeriodSegment;
15864
+ /**
15865
+ * Retorna o foco para o input de segmento anterior.
15866
+ * Retorna `true` se o foco foi movido, `false` se não há segmento anterior focável.
15867
+ */
15764
15868
  private advanceToPreviousSegment;
15765
15869
  /** Foca o ultimo input de segmento visivel. */
15766
15870
  private focusLastSegment;
@@ -15768,6 +15872,11 @@ declare class PoTimepickerComponent extends PoTimepickerBaseComponent implements
15768
15872
  private isLastSegment;
15769
15873
  /** Alterna entre AM e PM no display de periodo e atualiza o modelo. */
15770
15874
  private togglePeriod;
15875
+ /**
15876
+ * Verifica se um período (AM/PM) está completamente fora do range min/max.
15877
+ * AM corresponde às horas 0-11 em 24h, PM às horas 12-23.
15878
+ */
15879
+ private isPeriodBlocked;
15771
15880
  /** Incrementa ou decrementa o valor de um segmento na direcao indicada (+1 ou -1), respeitando limites e intervalos. */
15772
15881
  private incrementSegment;
15773
15882
  private incrementHourSegment;
@@ -20912,7 +21021,7 @@ interface PoUploadFileRestrictions {
20912
21021
  *
20913
21022
  * @description
20914
21023
  *
20915
- * *Enum* `PoProgressStatus` para os status de barra de progresso.
21024
+ * Enum `PoProgressStatus` para os status de barra de progresso.
20916
21025
  */
20917
21026
  declare enum PoProgressStatus {
20918
21027
  /** Define o status `default` para a barra de progresso. */
@@ -20923,6 +21032,20 @@ declare enum PoProgressStatus {
20923
21032
  Success = "success"
20924
21033
  }
20925
21034
 
21035
+ /**
21036
+ * @usedBy PoProgressComponent
21037
+ *
21038
+ * @description
21039
+ *
21040
+ * Enum `PoProgressShape` para definir o formato visual do componente de progresso.
21041
+ */
21042
+ declare enum PoProgressShape {
21043
+ /** Formato barra de progresso (padrão). */
21044
+ bar = "bar",
21045
+ /** Formato circular de progresso. */
21046
+ circle = "circle"
21047
+ }
21048
+
20926
21049
  /**
20927
21050
  * @usedBy PoProgressComponent
20928
21051
  *
@@ -21044,9 +21167,22 @@ interface PoProgressAction {
21044
21167
  * | **po-progress-bar** | | |
21045
21168
  * | `--background-color-tray` | Cor do background | `var(--color-brand-01-lightest)` |
21046
21169
  * | `--background-color-indicator` | Cor do background do indicador | `var(--color-action-default)` |
21170
+ * | **po-progress-circle** | | |
21171
+ * | `--background-color-tray` | Cor do background | `var(--color-brand-01-lightest)` |
21172
+ * | `--background-color-indicator` | Cor do background do indicador | `var(--color-action-default)` |
21047
21173
  *
21048
21174
  */
21049
21175
  declare class PoProgressBaseComponent {
21176
+ /**
21177
+ * @optional
21178
+ *
21179
+ * @description
21180
+ *
21181
+ * Define um nome acessível para o elemento com `role="progressbar"`.
21182
+ *
21183
+ * Quando não informado, o componente utiliza o valor de `p-text` como alternativa, se disponível.
21184
+ */
21185
+ ariaLabel?: string;
21050
21186
  /**
21051
21187
  * @optional
21052
21188
  *
@@ -21057,6 +21193,8 @@ declare class PoProgressBaseComponent {
21057
21193
  * > Se nenhuma função for passada para o evento `(p-cancel)` ou a barra de progresso estiver com o status `PoProgressStatus.Success`,
21058
21194
  * o ícone de cancelamento não será exibido.
21059
21195
  *
21196
+ * > Não compatível com `p-shape="circle"`.
21197
+ *
21060
21198
  * @default `false`
21061
21199
  */
21062
21200
  disabledCancel: boolean;
@@ -21066,6 +21204,8 @@ declare class PoProgressBaseComponent {
21066
21204
  * @description
21067
21205
  *
21068
21206
  * Informação adicional que aparecerá abaixo da barra de progresso ao lado direito.
21207
+ *
21208
+ * > Não compatível com `p-shape="circle"`.
21069
21209
  */
21070
21210
  info?: string;
21071
21211
  /**
@@ -21076,6 +21216,8 @@ declare class PoProgressBaseComponent {
21076
21216
  * Ícone que aparecerá ao lado do texto da propriedade `p-info`.
21077
21217
  *
21078
21218
  * Exemplo: `an an-check`.
21219
+ *
21220
+ * > Não compatível com `p-shape="circle"`.
21079
21221
  */
21080
21222
  infoIcon?: string | TemplateRef<void>;
21081
21223
  /**
@@ -21095,6 +21237,8 @@ declare class PoProgressBaseComponent {
21095
21237
  * @description
21096
21238
  *
21097
21239
  * Texto principal que aparecerá abaixo da barra de progresso no lado esquerdo.
21240
+ *
21241
+ * > Não compatível com `p-shape="circle"`.
21098
21242
  */
21099
21243
  text?: string;
21100
21244
  /**
@@ -21111,6 +21255,8 @@ declare class PoProgressBaseComponent {
21111
21255
  * - **`disabled`**: Indica se o botão deve estar desabilitado (opcional).
21112
21256
  * - **`visible`**: Determina se o botão será exibido. Pode ser um valor booleano ou uma função que retorna um booleano (opcional).
21113
21257
  *
21258
+ * > Não compatível com `p-shape="circle"`.
21259
+ *
21114
21260
  * @example
21115
21261
  * **Exemplo de uso:**
21116
21262
  * ```html
@@ -21147,6 +21293,8 @@ declare class PoProgressBaseComponent {
21147
21293
  * Evento emitido quando o botão definido em `p-custom-action` é clicado. Este evento retorna informações
21148
21294
  * relacionadas à barra de progresso ou ao arquivo/processo associado, permitindo executar ações específicas.
21149
21295
  *
21296
+ * > Não compatível com `p-shape="circle"`.
21297
+ *
21150
21298
  * @example
21151
21299
  * **Exemplo de uso:**
21152
21300
  *
@@ -21187,6 +21335,8 @@ declare class PoProgressBaseComponent {
21187
21335
  *
21188
21336
  * > Se nenhuma função for passada para o evento ou a barra de progresso estiver com o status `PoProgressStatus.Success`,
21189
21337
  * o ícone de cancelamento não será exibido.
21338
+ *
21339
+ * > Não compatível com `p-shape="circle"`.
21190
21340
  */
21191
21341
  cancel: EventEmitter<any>;
21192
21342
  /**
@@ -21198,6 +21348,8 @@ declare class PoProgressBaseComponent {
21198
21348
  *
21199
21349
  * > o ícone será exibido apenas se informar uma função neste evento e o status da barra de progresso for
21200
21350
  * `PoProgressStatus.Error`.
21351
+ *
21352
+ * > Não compatível com `p-shape="circle"`.
21201
21353
  */
21202
21354
  retry: EventEmitter<any>;
21203
21355
  private _indeterminate?;
@@ -21205,6 +21357,43 @@ declare class PoProgressBaseComponent {
21205
21357
  private _size;
21206
21358
  private _sizeActions;
21207
21359
  private _initialSizeActions;
21360
+ /**
21361
+ * @optional
21362
+ *
21363
+ * @description
21364
+ *
21365
+ * Define o formato visual do componente de progresso.
21366
+ *
21367
+ * Valores válidos:
21368
+ * - `bar`: exibe o progresso em formato de barra.
21369
+ * - `circle`: exibe o progresso em formato circular.
21370
+ *
21371
+ * @example
21372
+ * ```html
21373
+ * <po-progress p-shape="circle" [p-value]="50"></po-progress>
21374
+ * ```
21375
+ *
21376
+ * @default `bar`
21377
+ */
21378
+ shape: i0.InputSignalWithTransform<string, string>;
21379
+ /**
21380
+ * @optional
21381
+ *
21382
+ * @description
21383
+ *
21384
+ * Define o raio do círculo SVG em pixels. Permite ao usuário customizar o tamanho
21385
+ * do indicador circular ao utilizar `p-shape="circle"`.
21386
+ *
21387
+ * > O valor mínimo aceito é **24**.
21388
+ *
21389
+ * > Quando não informado, o componente calcula o raio automaticamente a partir do container pai.
21390
+ * Caso o container pai não possua dimensões definidas, o valor padrão de **45** será utilizado.
21391
+ *
21392
+ * > Não compatível com `p-shape="bar"`.
21393
+ *
21394
+ * @default `45` (automático)
21395
+ */
21396
+ radius: i0.InputSignalWithTransform<number, number>;
21208
21397
  /**
21209
21398
  * @optional
21210
21399
  *
@@ -21260,6 +21449,8 @@ declare class PoProgressBaseComponent {
21260
21449
  * > Caso a acessibilidade AA não esteja configurada, o tamanho `medium` será mantido.
21261
21450
  * Para mais detalhes, consulte a documentação do [po-theme](https://po-ui.io/documentation/po-theme).
21262
21451
  *
21452
+ * > Não compatível com `p-shape="circle"`.
21453
+ *
21263
21454
  * @default `medium`
21264
21455
  */
21265
21456
  set sizeActions(value: string);
@@ -21271,6 +21462,8 @@ declare class PoProgressBaseComponent {
21271
21462
  *
21272
21463
  * Ativa a exibição da porcentagem atual da barra de progresso.
21273
21464
  *
21465
+ * > Se utilizada no `p-shape="circle"` e o status estiver como `error`, a porcentagem não será exibida.
21466
+ *
21274
21467
  * @default `false`
21275
21468
  */
21276
21469
  showPercentage: boolean;
@@ -21278,7 +21471,7 @@ declare class PoProgressBaseComponent {
21278
21471
  private applySizeActionsBasedOnA11y;
21279
21472
  private isProgressRangeValue;
21280
21473
  static ɵfac: i0.ɵɵFactoryDeclaration<PoProgressBaseComponent, never>;
21281
- static ɵdir: i0.ɵɵDirectiveDeclaration<PoProgressBaseComponent, never, never, { "disabledCancel": { "alias": "p-disabled-cancel"; "required": false; }; "info": { "alias": "p-info"; "required": false; }; "infoIcon": { "alias": "p-info-icon"; "required": false; }; "status": { "alias": "p-status"; "required": false; }; "text": { "alias": "p-text"; "required": false; }; "customAction": { "alias": "p-custom-action"; "required": false; }; "indeterminate": { "alias": "p-indeterminate"; "required": false; }; "value": { "alias": "p-value"; "required": false; }; "size": { "alias": "p-size"; "required": false; }; "sizeActions": { "alias": "p-size-actions"; "required": false; }; "showPercentage": { "alias": "p-show-percentage"; "required": false; }; }, { "customActionClick": "p-custom-action-click"; "cancel": "p-cancel"; "retry": "p-retry"; }, never, never, true, never>;
21474
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PoProgressBaseComponent, never, never, { "ariaLabel": { "alias": "p-aria-label"; "required": false; }; "disabledCancel": { "alias": "p-disabled-cancel"; "required": false; }; "info": { "alias": "p-info"; "required": false; }; "infoIcon": { "alias": "p-info-icon"; "required": false; }; "status": { "alias": "p-status"; "required": false; }; "text": { "alias": "p-text"; "required": false; }; "customAction": { "alias": "p-custom-action"; "required": false; }; "shape": { "alias": "p-shape"; "required": false; "isSignal": true; }; "radius": { "alias": "p-radius"; "required": false; "isSignal": true; }; "indeterminate": { "alias": "p-indeterminate"; "required": false; }; "value": { "alias": "p-value"; "required": false; }; "size": { "alias": "p-size"; "required": false; }; "sizeActions": { "alias": "p-size-actions"; "required": false; }; "showPercentage": { "alias": "p-show-percentage"; "required": false; }; }, { "customActionClick": "p-custom-action-click"; "cancel": "p-cancel"; "retry": "p-retry"; }, never, never, true, never>;
21282
21475
  static ngAcceptInputType_disabledCancel: any;
21283
21476
  static ngAcceptInputType_showPercentage: any;
21284
21477
  }
@@ -21302,32 +21495,84 @@ declare class PoProgressBaseComponent {
21302
21495
  * <file name="sample-po-progress-publication/sample-po-progress-publication.component.html"> </file>
21303
21496
  * <file name="sample-po-progress-publication/sample-po-progress-publication.component.ts"> </file>
21304
21497
  * </example>
21498
+ *
21499
+ * <example name="po-progress-circle" title="PO Progress Circle">
21500
+ * <file name="sample-po-progress-circle/sample-po-progress-circle.component.html"> </file>
21501
+ * <file name="sample-po-progress-circle/sample-po-progress-circle.component.ts"> </file>
21502
+ * <file name="sample-po-progress-circle/sample-po-progress-circle.component.css"> </file>
21503
+ * </example>
21504
+ *
21305
21505
  */
21306
- declare class PoProgressComponent extends PoProgressBaseComponent implements OnInit {
21506
+ declare class PoProgressComponent extends PoProgressBaseComponent implements OnInit, AfterViewInit, OnDestroy {
21307
21507
  language: any;
21308
21508
  literals: any;
21509
+ private readonly elementRef;
21510
+ private resizeObserver?;
21511
+ private observeTarget;
21309
21512
  get isAllowCancel(): boolean;
21310
21513
  get isAllowInfoError(): boolean;
21311
21514
  get isAllowRetry(): boolean;
21312
21515
  get statusClass(): string;
21313
21516
  private readonly poLanguageService;
21314
21517
  private readonly router;
21518
+ parentSize: i0.WritableSignal<number>;
21315
21519
  ngOnInit(): void;
21520
+ ngAfterViewInit(): void;
21521
+ ngOnDestroy(): void;
21316
21522
  emitCancellation(): void;
21317
21523
  emitRetry(): void;
21318
21524
  actionIsDisabled(action: any): any;
21319
21525
  callAction(): void;
21320
21526
  isActionVisible(action: any): any;
21527
+ private hasExplicitHeight;
21528
+ private hasAllocatedHeight;
21529
+ private measureAndSetParentSize;
21530
+ private findConstrainedAncestor;
21321
21531
  static ɵfac: i0.ɵɵFactoryDeclaration<PoProgressComponent, never>;
21322
21532
  static ɵcmp: i0.ɵɵComponentDeclaration<PoProgressComponent, "po-progress", never, {}, {}, never, never, false, never>;
21323
21533
  }
21324
21534
 
21325
21535
  declare class PoProgressBarComponent {
21536
+ ariaLabel?: string;
21326
21537
  indeterminate: boolean;
21327
21538
  value: number;
21328
21539
  get valueScale(): string;
21329
21540
  static ɵfac: i0.ɵɵFactoryDeclaration<PoProgressBarComponent, never>;
21330
- static ɵcmp: i0.ɵɵComponentDeclaration<PoProgressBarComponent, "po-progress-bar", never, { "indeterminate": { "alias": "p-indeterminate"; "required": false; }; "value": { "alias": "p-value"; "required": false; }; }, {}, never, never, false, never>;
21541
+ static ɵcmp: i0.ɵɵComponentDeclaration<PoProgressBarComponent, "po-progress-bar", never, { "ariaLabel": { "alias": "p-aria-label"; "required": false; }; "indeterminate": { "alias": "p-indeterminate"; "required": false; }; "value": { "alias": "p-value"; "required": false; }; }, {}, never, never, false, never>;
21542
+ }
21543
+
21544
+ declare class PoProgressCircleComponent {
21545
+ indeterminate: i0.InputSignalWithTransform<boolean, boolean>;
21546
+ showPercentage: i0.InputSignalWithTransform<boolean, boolean>;
21547
+ size: i0.InputSignalWithTransform<string, string>;
21548
+ status: i0.InputSignalWithTransform<string, string>;
21549
+ ariaLabelInput: i0.InputSignal<string>;
21550
+ ariaLabel: i0.Signal<string>;
21551
+ value: i0.InputSignal<number>;
21552
+ radius: i0.InputSignal<number>;
21553
+ parentSize: i0.InputSignal<number>;
21554
+ strokeWidth: i0.Signal<4 | 8>;
21555
+ /**
21556
+ * Raio base calculado de acordo com as regras de prioridade:
21557
+ *
21558
+ * 1. Se `radius > 0` (usuário informou radius explicitamente):
21559
+ * - Se o pai tem dimensão: limita ao máximo que cabe no pai (evita estouro)
21560
+ * - Se o pai não tem dimensão: usa o radius informado diretamente
21561
+ *
21562
+ * 2. Se `radius === 0` (usuário NÃO informou radius):
21563
+ * - Se o pai tem dimensão: ocupa o máximo disponível no pai
21564
+ * - Se o pai não tem dimensão: usa o default de 45
21565
+ */
21566
+ baseRadius: i0.Signal<number>;
21567
+ hasCenterContent: i0.Signal<boolean>;
21568
+ effectiveRadius: i0.Signal<number>;
21569
+ viewBoxSize: i0.Signal<number>;
21570
+ center: i0.Signal<number>;
21571
+ circumference: i0.Signal<number>;
21572
+ dashOffset: i0.Signal<number>;
21573
+ naturalSize: i0.Signal<string>;
21574
+ static ɵfac: i0.ɵɵFactoryDeclaration<PoProgressCircleComponent, never>;
21575
+ static ɵcmp: i0.ɵɵComponentDeclaration<PoProgressCircleComponent, "po-progress-circle", never, { "indeterminate": { "alias": "p-indeterminate"; "required": false; "isSignal": true; }; "showPercentage": { "alias": "p-show-percentage"; "required": false; "isSignal": true; }; "size": { "alias": "p-size"; "required": false; "isSignal": true; }; "status": { "alias": "p-status"; "required": false; "isSignal": true; }; "ariaLabelInput": { "alias": "p-aria-label"; "required": false; "isSignal": true; }; "value": { "alias": "p-value"; "required": false; "isSignal": true; }; "radius": { "alias": "p-radius"; "required": false; "isSignal": true; }; "parentSize": { "alias": "p-parent-size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
21331
21576
  }
21332
21577
 
21333
21578
  /**
@@ -21337,7 +21582,7 @@ declare class PoProgressBarComponent {
21337
21582
  */
21338
21583
  declare class PoProgressModule {
21339
21584
  static ɵfac: i0.ɵɵFactoryDeclaration<PoProgressModule, never>;
21340
- static ɵmod: i0.ɵɵNgModuleDeclaration<PoProgressModule, [typeof PoProgressBarComponent, typeof PoProgressComponent], [typeof i2.CommonModule, typeof PoButtonModule, typeof PoIconModule, typeof PoLabelModule], [typeof PoProgressComponent]>;
21585
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PoProgressModule, [typeof PoProgressBarComponent, typeof PoProgressComponent], [typeof i2.CommonModule, typeof PoButtonModule, typeof PoIconModule, typeof PoLabelModule, typeof PoProgressCircleComponent], [typeof PoProgressComponent]>;
21341
21586
  static ɵinj: i0.ɵɵInjectorDeclaration<PoProgressModule>;
21342
21587
  }
21343
21588
 
@@ -24354,7 +24599,13 @@ interface PoDynamicFormField extends PoDynamicField {
24354
24599
  * Retorna um objeto `KeyboardEvent` com informações sobre a tecla.
24355
24600
  */
24356
24601
  keydown?: Function;
24357
- /** Define a obrigatoriedade do campo. */
24602
+ /**
24603
+ * Define a obrigatoriedade do campo.
24604
+ *
24605
+ * **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-timepicker`, `po-input`, `po-number`,
24606
+ * `po-decimal`, `po-select`, `po-radio-group`, `po-combo`, `po-lookup`, `po-checkbox-group`, `po-multiselect`,
24607
+ * `po-textarea`, `po-password``, `po-upload`.
24608
+ */
24358
24609
  required?: boolean;
24359
24610
  /**
24360
24611
  *
@@ -24362,7 +24613,7 @@ interface PoDynamicFormField extends PoDynamicField {
24362
24613
  *
24363
24614
  * > Necessário que a propriedade `required` esteja habilitada.
24364
24615
  *
24365
- * **Componentes compatíveis:** `po-datepicker`, `po-input`, `po-number`, `po-decimal`, `po-password`.
24616
+ * **Componentes compatíveis:** `po-datepicker`, `po-timepicker`, `po-input`, `po-number`, `po-decimal`, `po-password`.
24366
24617
  */
24367
24618
  requiredFieldErrorMessage?: boolean;
24368
24619
  /**
@@ -24371,6 +24622,10 @@ interface PoDynamicFormField extends PoDynamicField {
24371
24622
  * > A indicação não será exibida, se:
24372
24623
  * - O campo for `required`, ou;
24373
24624
  * - Não possuir `help` e `label`.
24625
+ *
24626
+ * **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-timepicker`, `po-input`, `po-number`,
24627
+ * `po-decimal`, `po-select`, `po-radio-group`, `po-combo`, `po-lookup`, `po-checkbox-group`, `po-multiselect`,
24628
+ * `po-textarea`, `po-password`.
24374
24629
  */
24375
24630
  optional?: boolean;
24376
24631
  /**
@@ -24599,14 +24854,15 @@ interface PoDynamicFormField extends PoDynamicField {
24599
24854
  * - required;
24600
24855
  *
24601
24856
  * > Esta mensagem pode ser exibida quando o campo estiver vazio, caso seja requerido. Em casos de componentes como
24602
- * `po-datepicker`, `po-input`, `po-number`, `po-decimal`, `po-password`, é necessário que a propriedade
24857
+ * `po-datepicker`, `po-input`, `po-number`, `po-decimal`, `po-password`, `po-timepicker`, é necessário que a propriedade
24603
24858
  * `requiredFieldErrorMessage` esteja como `true` para que a mensagem seja exibida com o campo vazio. Componentes
24604
24859
  * como `po-datepicker-range`, `po-select`, `po-checkbox-group`, `po-radio-group`, `po-multiselect`, `po-combo`,
24605
24860
  * `po-lookup` e `po-textarea` não é necessário passar a propriedade `requiredFieldErrorMessage`.
24606
24861
  *
24607
24862
  *
24608
24863
  * **Componentes compatíveis:** `po-checkbox-group`, `po-combo`, `po-datepicker`, `po-datepicker-range`,
24609
- * `po-decimal`, `po-input`, `po-lookup`, `po-multiselect`, `po-number`, `po-password`, `po-radio-group`, `po-select`, `po-switch`, `po-textarea`.
24864
+ * `po-decimal`, `po-input`, `po-lookup`, `po-multiselect`, `po-number`, `po-password`, `po-radio-group`, `po-select`,
24865
+ * `po-switch`, `po-textarea`, `po-timepicker`.
24610
24866
  */
24611
24867
  errorMessage?: string;
24612
24868
  /**
@@ -24620,7 +24876,8 @@ interface PoDynamicFormField extends PoDynamicField {
24620
24876
  * e um tooltip será exibido ao passar o mouse sobre a mensagem para mostrar o conteúdo completo.
24621
24877
  *
24622
24878
  * **Componentes compatíveis:** `po-checkbox-group`, `po-combo`, `po-datepicker`, `po-datepicker-range`,
24623
- * `po-decimal`, `po-input`, `po-lookup`, `po-multiselect`, `po-number`, `po-password`, `po-radio-group`, `po-select`, `po-switch`, `po-textarea`.
24879
+ * `po-decimal`, `po-input`, `po-lookup`, `po-multiselect`, `po-number`, `po-password`, `po-radio-group`, `po-select`,
24880
+ * `po-switch`, `po-textarea`, `po-timepicker`.
24624
24881
  *
24625
24882
  * @default `false`
24626
24883
  */
@@ -24661,6 +24918,8 @@ interface PoDynamicFormField extends PoDynamicField {
24661
24918
  *
24662
24919
  * Também pode-se utilizar em conjunto com `searchService`, informando uma lista de propriedades que será utilizado
24663
24920
  * para formatação da exibição no campo, por exemplo: ["id", "name"].
24921
+ *
24922
+ * **Componentes compatíveis:** `po-datepicker`, `po-timepicker`, `po-lookup`.
24664
24923
  */
24665
24924
  format?: string | Array<string>;
24666
24925
  /**
@@ -24710,7 +24969,12 @@ interface PoDynamicFormField extends PoDynamicField {
24710
24969
  * array.
24711
24970
  */
24712
24971
  order?: number;
24713
- /** Mensagem que será exibida enquanto o campo não estiver preenchido. */
24972
+ /**
24973
+ * Mensagem que será exibida enquanto o campo não estiver preenchido.
24974
+ *
24975
+ * **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-timepicker`, `po-input`, `po-number`,
24976
+ * `po-decimal`, `po-select`, `po-combo`, `po-lookup`, `po-multiselect`, `po-textarea`, `po-password`.
24977
+ */
24714
24978
  placeholder?: string;
24715
24979
  /**
24716
24980
  * Define a localidade a ser utilizada no componente.
@@ -24725,7 +24989,8 @@ interface PoDynamicFormField extends PoDynamicField {
24725
24989
  * ```
24726
24990
  *
24727
24991
  * > Para ver quais linguagens suportadas acesse [`I18n`](documentation/po-i18n)
24728
- * > A propriedade será repassada para os componentes que suportam a mesma.
24992
+ *
24993
+ * **Componentes compatíveis:** `po-datepicker`, `po-decimal`, `po-timepicker`.
24729
24994
  */
24730
24995
  locale?: string;
24731
24996
  /**
@@ -24736,7 +25001,8 @@ interface PoDynamicFormField extends PoDynamicField {
24736
25001
  range?: boolean;
24737
25002
  /** Indica que o campo será somente leitura.
24738
25003
  *
24739
- * **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-input`, `po-number`, `po-decimal`, `po-select`, `po-textarea`, `po-password`
25004
+ * **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-timepicker`, `po-input`, `po-number`,
25005
+ * `po-decimal`, `po-select`, `po-textarea`, `po-password`.
24740
25006
  */
24741
25007
  readonly?: boolean;
24742
25008
  /**
@@ -24747,13 +25013,15 @@ interface PoDynamicFormField extends PoDynamicField {
24747
25013
  multiple?: boolean;
24748
25014
  /** Se verdadeiro, o campo receberá um botão para ser limpo.
24749
25015
  *
24750
- * **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-input`, `po-number`, `po-decimal`, `po-combo`, `po-lookup`, `po-password`
25016
+ * **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-input`, `po-number`, `po-decimal`,
25017
+ * `po-combo`, `po-lookup`, `po-password`, `po-timepicker`.
24751
25018
  */
24752
25019
  clean?: boolean;
24753
25020
  /**
24754
25021
  * Define a propriedade nativa `autocomplete` do campo como off.
24755
25022
  *
24756
- * **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-input`, `po-number`, `po-decimal`, `po-lookup`, `po-password`
25023
+ * **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-input`, `po-number`, `po-decimal`,
25024
+ * `po-lookup`, `po-password`, `po-timepicker`.
24757
25025
  */
24758
25026
  noAutocomplete?: boolean;
24759
25027
  /**
@@ -25026,6 +25294,10 @@ interface PoDynamicFormField extends PoDynamicField {
25026
25294
  *
25027
25295
  * > Não será exibida a indicação se:
25028
25296
  * - Não possuir `p-help` e/ou `p-label`.
25297
+ *
25298
+ * **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-timepicker`, `po-input`, `po-number`,
25299
+ * `po-decimal`, `po-select`, `po-radio-group`, `po-combo`, `po-lookup`, `po-checkbox-group`, `po-multiselect`,
25300
+ * `po-textarea`, `po-password`, `po-upload`.
25029
25301
  */
25030
25302
  showRequired?: boolean;
25031
25303
  /**
@@ -25167,6 +25439,57 @@ interface PoDynamicFormField extends PoDynamicField {
25167
25439
  * **Compatível com todos os componentes**
25168
25440
  */
25169
25441
  compactLabel?: boolean;
25442
+ /**
25443
+ * Define o modo de seleção do `po-datepicker`.
25444
+ *
25445
+ * Valores aceitos:
25446
+ * - `'month-year'`: exibe seleção de mês e ano (formato `MM/YYYY`)
25447
+ * - `'year'`: exibe seleção apenas de ano (formato `YYYY`)
25448
+ *
25449
+ * **Componente compatível:** `po-datepicker`
25450
+ */
25451
+ mode?: 'month-year' | 'year';
25452
+ /**
25453
+ * Define o limite de anos exibidos na lista de anos do `po-datepicker` nos modos `month-year` e `year`.
25454
+ *
25455
+ * @default `150`
25456
+ *
25457
+ * **Componente compatível:** `po-datepicker`
25458
+ */
25459
+ yearRangeLimit?: number;
25460
+ /**
25461
+ * Habilita a exibição dos presets padrão de intervalos de data no painel lateral do calendário.
25462
+ *
25463
+ * Aceita os seguintes valores:
25464
+ * - `true`: exibe todos os presets padrão.
25465
+ * - `false`: não exibe os presets padrão.
25466
+ * - `Array<string>`: exibe apenas os presets padrão cujos labels estejam no array informado.
25467
+ *
25468
+ * **Componente compatível:** `po-datepicker-range`
25469
+ *
25470
+ * @default `false`
25471
+ */
25472
+ rangePresets?: boolean | Array<string>;
25473
+ /**
25474
+ * Lista de presets customizados de intervalos de data exibidos no painel lateral do calendário.
25475
+ *
25476
+ * Para utilizar presets customizados, informe um array de objetos que implementam a interface `PoCalendarRangePreset`.
25477
+ *
25478
+ * **Componente compatível:** `po-datepicker-range`
25479
+ */
25480
+ rangePresetOptions?: Array<PoCalendarRangePreset>;
25481
+ /**
25482
+ * Define a ordenação dos presets na lista.
25483
+ *
25484
+ * Valores aceitos:
25485
+ * - `'asc'`: ordenação crescente (passado → futuro)
25486
+ * - `'desc'`: ordenação decrescente (futuro → passado)
25487
+ *
25488
+ * **Componente compatível:** `po-datepicker-range`
25489
+ *
25490
+ * @default `'asc'`
25491
+ */
25492
+ rangePresetsOrder?: 'asc' | 'desc';
25170
25493
  }
25171
25494
 
25172
25495
  /**
@@ -29271,15 +29594,21 @@ declare class PoPageContentBaseComponent {
29271
29594
  * @docsExtends PoPageContentBaseComponent
29272
29595
  */
29273
29596
  declare class PoPageContentComponent extends PoPageContentBaseComponent implements AfterViewInit, OnDestroy {
29274
- renderer: Renderer2;
29597
+ private readonly renderer;
29598
+ private readonly elementRef;
29599
+ private readonly ngZone;
29275
29600
  contentOpacity: number;
29276
29601
  height: string;
29277
- overflowY: string;
29278
29602
  constructor();
29279
29603
  ngAfterViewInit(): void;
29280
29604
  ngOnDestroy(): void;
29605
+ /**
29606
+ * Recalcula a altura do po-page-content.
29607
+ * Chamado internamente pelo po-page-default quando inputs que afetam
29608
+ * o tamanho do header mudam (title, subtitle, breadcrumb, headerType, theme).
29609
+ */
29281
29610
  recalculateHeaderSize(): void;
29282
- setHeightContent(poPageHeader: HTMLElement): void;
29611
+ private setHeightContent;
29283
29612
  private initializeListeners;
29284
29613
  private removeListeners;
29285
29614
  static ɵfac: i0.ɵɵFactoryDeclaration<PoPageContentComponent, never>;
@@ -29288,11 +29617,14 @@ declare class PoPageContentComponent extends PoPageContentBaseComponent implemen
29288
29617
 
29289
29618
  /**
29290
29619
  * @description
29291
- * Interface para as ações dos componentes po-page-default e po-page-list.
29292
29620
  *
29293
- * > Quando o array de actions possui quatro ou mais registros, os dois últimos e os seguintes são automaticamente agrupados no po-dropdown.
29294
- * A partir desse ponto, as propriedades `selected`, `separator`, `type` e `subItems` passam a ter efeito apenas nas ações exibidas dentro do dropdown, ou seja, a partir da terceira ação.
29295
- * Dessa forma, o uso de subItems (agrupadores dentro do dropdown) terá efeito quando houver pelo menos quatro ações definidas.
29621
+ * Interface para as ações dos componentes `po-page-default` e `po-page-list`.
29622
+ *
29623
+ * As ações podem ser exibidas como botões no cabeçalho ou agrupadas em um *dropdown*,
29624
+ * conforme o `PoPageActionsLayout` e o tamanho da tela.
29625
+ *
29626
+ * > As propriedades `separator`, `selected` e `subItems` possuem efeito apenas quando
29627
+ * a ação é exibida dentro do *dropdown*.
29296
29628
  *
29297
29629
  * @docsExtends PoDropdownAction
29298
29630
  *
@@ -29301,6 +29633,25 @@ declare class PoPageContentComponent extends PoPageContentBaseComponent implemen
29301
29633
  * @usedBy PoPageDefaultComponent, PoPageListComponent
29302
29634
  */
29303
29635
  interface PoPageAction extends PoDropdownAction {
29636
+ /**
29637
+ * @optional
29638
+ *
29639
+ * @description
29640
+ *
29641
+ * Define o estilo visual da ação quando exibida como botão fora do *dropdown*.
29642
+ *
29643
+ * Valores permitidos:
29644
+ * - `primary`: botão com maior destaque visual.
29645
+ * - `secondary`: estilo padrão.
29646
+ *
29647
+ * > Valores inválidos são ignorados e o componente aplica o estilo padrão da posição.
29648
+ *
29649
+ * > Somente uma ação pode ter `kind` igual a `primary`. Caso mais de uma defina `primary`,
29650
+ * apenas a primeira será mantida e as demais receberão `secondary`.
29651
+ *
29652
+ * > Quando não definido, o estilo é determinado pelo `PoPageActionsLayout`.
29653
+ */
29654
+ kind?: string;
29304
29655
  }
29305
29656
 
29306
29657
  /**
@@ -29345,6 +29696,59 @@ interface PoBreadcrumb {
29345
29696
  params?: object;
29346
29697
  }
29347
29698
 
29699
+ /**
29700
+ * @usedBy PoPageDefaultComponent
29701
+ *
29702
+ * @description
29703
+ *
29704
+ * Define os layouts de exibição das ações no cabeçalho do `po-page-default`.
29705
+ *
29706
+ * > Compatível com todos os valores de `PoPageHeaderType`.
29707
+ */
29708
+ declare enum PoPageActionsLayout {
29709
+ /**
29710
+ * Exibe as ações como botões (até 3 em desktop e 2 em mobile), agrupando as demais no *dropdown*.
29711
+ *
29712
+ * Quando `PoPageAction.kind` não é definido, a primeira ação recebe o estilo `primary`
29713
+ * e as demais recebem `secondary`.
29714
+ */
29715
+ default = "default",
29716
+ /**
29717
+ * Agrupa todas as ações exclusivamente dentro do menu *dropdown*.
29718
+ */
29719
+ dropdown = "dropdown",
29720
+ /**
29721
+ * Exibe a primeira ação como botão e agrupa as demais no *dropdown*.
29722
+ */
29723
+ mixed = "mixed"
29724
+ }
29725
+
29726
+ /**
29727
+ * @usedBy PoPageDefaultComponent
29728
+ *
29729
+ * @description
29730
+ *
29731
+ * Define os tipos de cabeçalho disponíveis no `po-page-default`.
29732
+ */
29733
+ declare enum PoPageHeaderType {
29734
+ /**
29735
+ * Layout padrão com suporte a `p-breadcrumb`.
29736
+ */
29737
+ primary = "primary",
29738
+ /**
29739
+ * Exibe um botão de retorno ao lado do título.
29740
+ *
29741
+ * > Incompatível com `p-breadcrumb`.
29742
+ */
29743
+ secondary = "secondary",
29744
+ /**
29745
+ * Layout simplificado sem botão de retorno.
29746
+ *
29747
+ * > Incompatível com `p-breadcrumb`.
29748
+ */
29749
+ tertiary = "tertiary"
29750
+ }
29751
+
29348
29752
  /**
29349
29753
  * @usedBy PoPageDefaultComponent
29350
29754
  *
@@ -29360,42 +29764,69 @@ interface PoPageDefaultLiterals {
29360
29764
  /**
29361
29765
  * @description
29362
29766
  *
29363
- * O componente `po-page-default` é utilizado como o container principal para as telas sem um template definido.
29767
+ * O `po-page-default` é utilizado como container principal para telas sem um template definido.
29768
+ *
29769
+ * Oferece suporte a cabeçalhos dinâmicos via `p-page-header-type`, navegação por *breadcrumb*
29770
+ * e gerenciamento de ações com agrupamento responsivo via `p-page-actions-layout`.
29364
29771
  *
29365
29772
  * #### Tokens customizáveis
29366
29773
  *
29367
29774
  * > Para maiores informações, acesse o guia [Personalizando o Tema Padrão com Tokens CSS](https://po-ui.io/guides/theme-customization).
29368
29775
  *
29369
- * | Propriedade | Descrição | Valor Padrão |
29370
- * |---------------------|---------------------------------------------|---------------------------------------|
29371
- * | **Header** | | |
29372
- * | `--padding` | Espaçamento do header | `var(--spacing-xs) var(--spacing-md)` |
29373
- * | `--gap` | Espaçamento entre os breadcrumbs e o título | `var(--spacing-md)` |
29374
- * | `--gap-actions` | Espaçamento entre as ações | `var(--spacing-xs)` |
29375
- * | `--font-family` | Família tipográfica do título | `var(--font-family-theme)` |
29376
- * | **Content** | | |
29377
- * | `--padding-content` | Espaçamento do conteúdo | `var(--spacing-xs) var(--spacing-sm)` |
29776
+ * | Propriedade | Descrição | Valor Padrão |
29777
+ * |----------------------------------------------------|---------------------------------------------|---------------------------------------|
29778
+ * | **Página (po-page-default)** | | |
29779
+ * | `--background` | Background da página (header e body) | `var(--color-page-background-color-page)` |
29780
+ * | **Header (po-page-header)** | | |
29781
+ * | `--padding` | Espaçamento do header | `var(--spacing-xs) var(--spacing-md)` |
29782
+ * | `--gap` | Espaçamento entre os breadcrumbs e o título | `var(--spacing-md)` |
29783
+ * | `--gap-actions` | Espaçamento entre as ações | `var(--spacing-xs)` |
29784
+ * | **Header (po-page-header .po-page-header-title)** | | |
29785
+ * | `--font-family` | Família tipográfica do título | `var(--font-family-theme)` |
29786
+ * | **Content (po-page-content)** | | |
29787
+ * | `--padding-content` | Espaçamento do conteúdo | `var(--spacing-xs) var(--spacing-sm)` |
29378
29788
  */
29379
29789
  declare abstract class PoPageDefaultBaseComponent {
29380
29790
  poPageContent: PoPageContentComponent;
29381
- /** Objeto com propriedades do breadcrumb. */
29382
- breadcrumb?: PoBreadcrumb;
29383
29791
  visibleActions: Array<PoPageAction>;
29384
29792
  protected language: string;
29385
29793
  private _actions?;
29794
+ private _breadcrumb?;
29386
29795
  private _componentsSize?;
29387
29796
  private _initialComponentsSize?;
29388
29797
  private _literals;
29798
+ private _pageActionsLayout;
29799
+ private _pageHeaderType;
29800
+ private _subtitle;
29389
29801
  private _title;
29390
29802
  /**
29391
29803
  * @optional
29392
29804
  *
29393
29805
  * @description
29394
29806
  *
29395
- * Nesta propriedade deve ser definido um array de objetos que implementam a interface `PoPageAction`.
29807
+ * Define a lista de ações que serão exibidas no cabeçalho da página.
29808
+ *
29809
+ * Recebe um array de objetos que implementam a interface `PoPageAction`.
29810
+ *
29811
+ * > O comportamento de exibição pode ser customizado através da propriedade `p-page-actions-layout`.
29812
+ *
29813
+ * @default `[]`
29396
29814
  */
29397
29815
  set actions(actions: Array<PoPageAction>);
29398
29816
  get actions(): Array<PoPageAction>;
29817
+ /**
29818
+ * @optional
29819
+ *
29820
+ * @description
29821
+ *
29822
+ * Define o sistema de navegação que indica o caminho da página atual na hierarquia da aplicação.
29823
+ *
29824
+ * Recebe um objeto que implementa a interface `PoBreadcrumb`.
29825
+ *
29826
+ * > Compatível com o cabeçalho (`p-page-header-type`) do tipo `primary`.
29827
+ */
29828
+ set breadcrumb(value: PoBreadcrumb);
29829
+ get breadcrumb(): PoBreadcrumb;
29399
29830
  /**
29400
29831
  * @optional
29401
29832
  *
@@ -29417,37 +29848,62 @@ declare abstract class PoPageDefaultBaseComponent {
29417
29848
  *
29418
29849
  * @description
29419
29850
  *
29420
- * Objeto com as literais usadas no `po-page-default`.
29421
- *
29422
- * Existem duas maneiras de customizar o componente, passando um objeto com todas as literais disponíveis:
29851
+ * Permite a customização das literais utilizadas no componente.
29423
29852
  *
29424
- * ```
29425
- * const customLiterals: PoPageDefaultLiterals = {
29426
- * otherActions: 'Mais ações'
29427
- * };
29428
- * ```
29853
+ * Para customizar, basta passar um objeto parcial ou completo que implemente a interface `PoPageDefaultLiterals`.
29429
29854
  *
29430
- * Ou passando apenas as literais que deseja customizar:
29855
+ * Exemplo de uso:
29431
29856
  *
29857
+ * ```html
29858
+ * <po-page-default [p-literals]="customLiterals"></po-page-default>
29432
29859
  * ```
29433
- * const customLiterals: PoPageDefaultLiterals = {
29434
- * otherActions: 'Ações da página'
29435
- * };
29436
- * ```
29437
- *
29438
- * E para carregar as literais customizadas, basta apenas passar o objeto para o componente.
29439
29860
  *
29440
- * ```
29441
- * <po-page-default
29442
- * [p-literals]="customLiterals">
29443
- * </po-page-default>
29861
+ * ```typescript
29862
+ * const customLiterals: PoPageDefaultLiterals = {
29863
+ * otherActions: 'Mais opções'
29864
+ * };
29444
29865
  * ```
29445
29866
  *
29446
- * > O valor padrão será traduzido de acordo com o idioma configurado no [`PoI18nService`](/documentation/po-i18n) ou *browser*.
29867
+ * > O valor padrão será traduzido de acordo com o idioma configurado no [`PoI18nService`](/documentation/po-i18n) ou navegador.
29447
29868
  */
29448
29869
  set literals(value: PoPageDefaultLiterals);
29449
29870
  get literals(): PoPageDefaultLiterals;
29450
- /** Título da página. */
29871
+ /**
29872
+ * @optional
29873
+ *
29874
+ * @description
29875
+ *
29876
+ * Define o layout de exibição das ações no cabeçalho.
29877
+ *
29878
+ * Aceita valores do enum `PoPageActionsLayout`.
29879
+ *
29880
+ * > Em telas reduzidas (< 480px) as ações fora do *dropdown* que possuam a propriedade `PoPageAction.icon` definida
29881
+ * exibirão apenas o ícone.
29882
+ *
29883
+ * @default `default`
29884
+ */
29885
+ set pageActionsLayout(value: string | PoPageActionsLayout);
29886
+ get pageActionsLayout(): string;
29887
+ /**
29888
+ * @optional
29889
+ *
29890
+ * @description
29891
+ *
29892
+ * Define o tipo de cabeçalho da página.
29893
+ *
29894
+ * Aceita valores do enum `PoPageHeaderType`.
29895
+ *
29896
+ * @default `primary`
29897
+ */
29898
+ set pageHeaderType(value: string | PoPageHeaderType);
29899
+ get pageHeaderType(): string;
29900
+ /**
29901
+ * @optional
29902
+ *
29903
+ * @description
29904
+ *
29905
+ * Define o título principal da página.
29906
+ */
29451
29907
  set title(title: string);
29452
29908
  get title(): string;
29453
29909
  /**
@@ -29455,16 +29911,29 @@ declare abstract class PoPageDefaultBaseComponent {
29455
29911
  *
29456
29912
  * @description
29457
29913
  *
29458
- * Subtitulo do Header da página
29914
+ * Define um texto de apoio ou informações adicionais logo abaixo do título principal.
29915
+ *
29916
+ * > Requer que`p-title` esteja definido.
29459
29917
  */
29460
- subtitle: string;
29918
+ set subtitle(value: string);
29919
+ get subtitle(): string;
29920
+ /**
29921
+ * @optional
29922
+ *
29923
+ * @description
29924
+ *
29925
+ * Evento disparado ao clicar no botão voltar exibido no cabeçalho.
29926
+ *
29927
+ * > Botão exibido apenas quando a propriedade `p-page-header-type` está configurada como `secondary`.
29928
+ */
29929
+ back: i0.OutputEmitterRef<void>;
29461
29930
  constructor(languageService: PoLanguageService);
29462
29931
  protected onThemeChange(): void;
29463
29932
  private applySizeBasedOnA11y;
29464
29933
  abstract setDropdownActions(): any;
29465
29934
  abstract getVisibleActions(): any;
29466
29935
  static ɵfac: i0.ɵɵFactoryDeclaration<PoPageDefaultBaseComponent, never>;
29467
- static ɵdir: i0.ɵɵDirectiveDeclaration<PoPageDefaultBaseComponent, never, never, { "breadcrumb": { "alias": "p-breadcrumb"; "required": false; }; "actions": { "alias": "p-actions"; "required": false; }; "componentsSize": { "alias": "p-components-size"; "required": false; }; "literals": { "alias": "p-literals"; "required": false; }; "title": { "alias": "p-title"; "required": false; }; "subtitle": { "alias": "p-subtitle"; "required": false; }; }, {}, never, never, true, never>;
29936
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PoPageDefaultBaseComponent, never, never, { "actions": { "alias": "p-actions"; "required": false; }; "breadcrumb": { "alias": "p-breadcrumb"; "required": false; }; "componentsSize": { "alias": "p-components-size"; "required": false; }; "literals": { "alias": "p-literals"; "required": false; }; "pageActionsLayout": { "alias": "p-page-actions-layout"; "required": false; }; "pageHeaderType": { "alias": "p-page-header-type"; "required": false; }; "title": { "alias": "p-title"; "required": false; }; "subtitle": { "alias": "p-subtitle"; "required": false; }; }, { "back": "p-back"; }, never, never, true, never>;
29468
29937
  }
29469
29938
 
29470
29939
  /**
@@ -29489,24 +29958,30 @@ declare abstract class PoPageDefaultBaseComponent {
29489
29958
  * <file name="sample-po-page-default-dashboard/sample-po-page-default-dashboard.service.ts"> </file>
29490
29959
  * </example>
29491
29960
  */
29492
- declare class PoPageDefaultComponent extends PoPageDefaultBaseComponent implements AfterContentInit, OnChanges {
29961
+ declare class PoPageDefaultComponent extends PoPageDefaultBaseComponent implements AfterContentInit, OnChanges, OnDestroy {
29493
29962
  private readonly renderer;
29494
29963
  private readonly router;
29964
+ readonly backIcon: string;
29965
+ readonly backNavigationLabel: string;
29495
29966
  limitPrimaryActions: number;
29496
29967
  dropdownActions: Array<PoPageAction>;
29497
29968
  isMobile: boolean;
29498
29969
  private readonly maxWidthMobile;
29970
+ private _primaryKindUsed;
29971
+ private resizeUnlisten;
29499
29972
  constructor();
29500
29973
  ngAfterContentInit(): void;
29501
29974
  ngOnChanges(changes: {
29502
29975
  [propName: string]: SimpleChange;
29503
29976
  }): void;
29977
+ ngOnDestroy(): void;
29504
29978
  actionIsDisabled(action: any): any;
29505
29979
  actionIsVisible(action: any): any;
29506
29980
  callAction(item: PoPageAction): void;
29507
29981
  hasPageHeader(): boolean;
29508
29982
  setDropdownActions(): void;
29509
29983
  getVisibleActions(): PoPageAction[];
29984
+ getActionKind(action: PoPageAction, fallback: string): string;
29510
29985
  private onResize;
29511
29986
  private setIsMobile;
29512
29987
  static ɵfac: i0.ɵɵFactoryDeclaration<PoPageDefaultComponent, never>;
@@ -29895,12 +30370,14 @@ declare class PoPageHeaderBaseComponent {
29895
30370
  size: string;
29896
30371
  /** Subtítulo da página. */
29897
30372
  subtitle: string;
30373
+ /** Define o tipo de header: `primary`, `secondary` ou `tertiary`. */
30374
+ type: string;
29898
30375
  private _breadcrumb;
29899
30376
  /** Objeto com propriedades do breadcrumb. */
29900
30377
  set breadcrumb(value: PoBreadcrumb);
29901
30378
  get breadcrumb(): PoBreadcrumb;
29902
30379
  static ɵfac: i0.ɵɵFactoryDeclaration<PoPageHeaderBaseComponent, never>;
29903
- static ɵdir: i0.ɵɵDirectiveDeclaration<PoPageHeaderBaseComponent, never, never, { "title": { "alias": "p-title"; "required": false; }; "size": { "alias": "p-size"; "required": false; }; "subtitle": { "alias": "p-subtitle"; "required": false; }; "breadcrumb": { "alias": "p-breadcrumb"; "required": false; }; }, {}, never, never, true, never>;
30380
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PoPageHeaderBaseComponent, never, never, { "title": { "alias": "p-title"; "required": false; }; "size": { "alias": "p-size"; "required": false; }; "subtitle": { "alias": "p-subtitle"; "required": false; }; "type": { "alias": "p-type"; "required": false; }; "breadcrumb": { "alias": "p-breadcrumb"; "required": false; }; }, {}, never, never, true, never>;
29904
30381
  }
29905
30382
 
29906
30383
  /**
@@ -29909,7 +30386,7 @@ declare class PoPageHeaderBaseComponent {
29909
30386
  */
29910
30387
  declare class PoPageHeaderComponent extends PoPageHeaderBaseComponent {
29911
30388
  static ɵfac: i0.ɵɵFactoryDeclaration<PoPageHeaderComponent, never>;
29912
- static ɵcmp: i0.ɵɵComponentDeclaration<PoPageHeaderComponent, "po-page-header", never, {}, {}, never, ["*"], false, never>;
30389
+ static ɵcmp: i0.ɵɵComponentDeclaration<PoPageHeaderComponent, "po-page-header", never, {}, {}, never, ["[po-page-header-navigation]", "*"], false, never>;
29913
30390
  }
29914
30391
 
29915
30392
  /**
@@ -31083,8 +31560,9 @@ declare class PoPageListComponent extends PoPageListBaseComponent implements Aft
31083
31560
 
31084
31561
  /**
31085
31562
  * @description
31086
- * Módulo dos componentes po-page-default, po-page-detail, po-page-edit,
31087
- * po-page-list e po-page-slide.
31563
+ *
31564
+ * Módulo responsável pelos componentes de estrutura de página: `po-page-default`, `po-page-detail`,
31565
+ * `po-page-edit`, `po-page-list` e `po-page-slide`.
31088
31566
  */
31089
31567
  declare class PoPageModule {
31090
31568
  static ɵfac: i0.ɵɵFactoryDeclaration<PoPageModule, never>;
@@ -34204,7 +34682,7 @@ declare const poThemeDefaultDarkValues: {
34204
34682
  'po-container': {
34205
34683
  '--background': string;
34206
34684
  };
34207
- 'div.po-lookup-filter-content input.po-input, input.po-input, po-datepicker, po-datepicker-range, po-decimal, po-email, po-input, po-login, po-lookup, po-number, po-password, po-url, po-combo, po-search, po-select, po-multiselect': {
34685
+ 'div.po-lookup-filter-content input.po-input, input.po-input, po-datepicker, po-datepicker-range, po-decimal, po-email, po-input, po-login, po-lookup, po-number, po-password, po-url, po-combo, po-search, po-select, po-multiselect, po-timepicker': {
34208
34686
  '--background-disabled': string;
34209
34687
  };
34210
34688
  'po-input input:-webkit-autofill, po-datepicker input:-webkit-autofill, po-datepicker-range input:-webkit-autofill, po-decimal input:-webkit-autofill, po-email input:-webkit-autofill, po-input input:-webkit-autofill, po-login input:-webkit-autofill, po-lookup input:-webkit-autofill, po-number input:-webkit-autofill, po-password input:-webkit-autofill, po-url input:-webkit-autofill, po-combo input:-webkit-autofill': {
@@ -34310,7 +34788,7 @@ declare const poThemeDefaultDarkValuesAA: {
34310
34788
  'po-container': {
34311
34789
  '--background': string;
34312
34790
  };
34313
- 'div.po-lookup-filter-content input.po-input, input.po-input, po-datepicker, po-datepicker-range, po-decimal, po-email, po-input, po-login, po-lookup, po-number, po-password, po-url, po-combo, po-search, po-select, po-multiselect': {
34791
+ 'div.po-lookup-filter-content input.po-input, input.po-input, po-datepicker, po-datepicker-range, po-decimal, po-email, po-input, po-login, po-lookup, po-number, po-password, po-url, po-combo, po-search, po-select, po-multiselect, po-timepicker': {
34314
34792
  '--background-disabled': string;
34315
34793
  };
34316
34794
  'po-input input:-webkit-autofill, po-datepicker input:-webkit-autofill, po-datepicker-range input:-webkit-autofill, po-decimal input:-webkit-autofill, po-email input:-webkit-autofill, po-input input:-webkit-autofill, po-login input:-webkit-autofill, po-lookup input:-webkit-autofill, po-number input:-webkit-autofill, po-password input:-webkit-autofill, po-url input:-webkit-autofill, po-combo input:-webkit-autofill': {
@@ -36677,5 +37155,5 @@ declare class PoHttpRequestInterceptorService implements HttpInterceptor {
36677
37155
  static ɵprov: i0.ɵɵInjectableDeclaration<PoHttpRequestInterceptorService>;
36678
37156
  }
36679
37157
 
36680
- export { AnimaliaIconDictionary, ForceBooleanComponentEnum, ForceOptionComponentEnum, I18N_CONFIG, InputBoolean, InputRequired, LOADING_ICON_COMPONENT, PO_CALENDAR_DEFAULT_RANGE_PRESETS, PO_CONTROL_POSITIONS, PoAccordionComponent, PoAccordionItemComponent, PoAccordionModule, PoActiveOverlayModule, PoActiveOverlayService, PoAvatarComponent, PoAvatarModule, PoBadgeComponent, PoBadgeModule, PoBreadcrumbComponent, PoBreadcrumbModule, PoButtonComponent, PoButtonGroupComponent, PoButtonGroupModule, PoButtonGroupToggle, PoButtonKind, PoButtonModule, PoButtonSize, PoButtonType, PoCalendarComponent, PoCalendarMode, PoCalendarModule, PoChartComponent, PoChartLabelFormat, PoChartModule, PoChartType, PoCheckboxComponent, PoCheckboxGroupComponent, PoCheckboxGroupModule, PoCheckboxModule, PoCheckboxSize, PoCleanComponent, PoCleanModule, PoColorPaletteModule, PoColorPaletteService, PoComboComponent, PoComboFilterMode, PoComboModule, PoComboOptionTemplateDirective, PoComponentInjectorModule, PoComponentInjectorService, PoComponentsModule, PoContainerComponent, PoContainerModule, PoContextMenuComponent, PoContextMenuModule, PoContextTabButtonComponent, PoContextTabsComponent, PoContextTabsModule, PoControlPositionModule, PoDateService, PoDateTimeModule, PoDatepickerComponent, PoDatepickerIsoFormat, PoDatepickerModule, PoDatepickerRangeComponent, PoDecimalComponent, PoDialogComponent, PoDialogModule, PoDialogService, PoDialogType, PoDirectivesModule, PoDisclaimerComponent, PoDisclaimerGroupComponent, PoDisclaimerGroupModule, PoDisclaimerModule, PoDividerComponent, PoDividerModule, PoDividerSize, PoDropdownComponent, PoDropdownModule, PoDynamicContainerComponent, PoDynamicFieldType, PoDynamicFormComponent, PoDynamicModule, PoDynamicSharedBase, PoDynamicViewComponent, PoEmailComponent, PoFieldContainerBottomComponent, PoFieldContainerComponent, PoFieldContainerModule, PoFieldModule, PoGaugeComponent, PoGaugeModule, PoGridComponent, PoGridModule, PoGuardsModule, PoHeaderComponent, PoHeaderModule, PoHelperComponent, PoHelperModule, PoHttpInterceptorModule, PoHttpInterceptorService, PoHttpRequestInterceptorService, PoHttpRequestModule, PoI18nModule, PoI18nPipe, PoI18nService, PoIconComponent, PoIconModule, PoImageComponent, PoImageModule, PoInfoComponent, PoInfoModule, PoInfoOrientation, PoInputComponent, PoInterceptorsModule, PoItemListComponent, PoLabelComponent, PoLabelModule, PoLanguageModule, PoLanguageService, PoLinkComponent, PoLinkModule, PoListBoxComponent, PoListBoxModule, PoListViewComponent, PoListViewContentTemplateDirective, PoListViewDetailTemplateDirective, PoListViewModule, PoLoadingComponent, PoLoadingIconComponent, PoLoadingModule, PoLoadingOverlayComponent, PoLoginComponent, PoLogoComponent, PoLogoModule, PoLookupComponent, PoLookupModalComponent, PoMask, PoMediaQueryModule, PoMediaQueryService, PoMenuComponent, PoMenuGlobalService, PoMenuHeaderTemplateDirective, PoMenuModule, PoMenuPanelComponent, PoMenuPanelModule, PoModalComponent, PoModalFooterComponent, PoModalModule, PoModule, PoMultiselectComponent, PoMultiselectFilterMode, PoMultiselectOptionTemplateDirective, PoNavbarComponent, PoNavbarModule, PoNotificationModule, PoNotificationService, PoNumberComponent, PoOverlayComponent, PoOverlayModule, PoPageDefaultComponent, PoPageDetailComponent, PoPageEditComponent, PoPageListComponent, PoPageModule, PoPageSlideComponent, PoPageSlideFooterComponent, PoPageSlideModule, PoPasswordComponent, PoPipesModule, PoPopoverComponent, PoPopoverModule, PoPopupComponent, PoPopupModule, PoProgressComponent, PoProgressModule, PoProgressSize, PoProgressStatus, PoRadioComponent, PoRadioGroupComponent, PoRadioGroupModule, PoRadioModule, PoRichTextComponent, PoRichTextToolbarActions, PoSearchComponent, PoSearchFilterMode, PoSearchListComponent, PoSearchModule, PoSelectComponent, PoServicesModule, PoSkeletonAnimation, PoSkeletonComponent, PoSkeletonModule, PoSkeletonSize, PoSkeletonType, PoSkeletonVariant, PoSlideComponent, PoSlideContentTemplateDirective, PoSlideModule, PoStepComponent, PoStepperComponent, PoStepperModule, PoStepperOrientation, PoStepperStatus, PoSwitchComponent, PoSwitchLabelPosition, PoSwitchModule, PoTabButtonComponent, PoTabComponent, PoTabDropdownComponent, PoTableCellTemplateDirective, PoTableColumnFrozenDirective, PoTableColumnSortType, PoTableColumnSpacing, PoTableColumnTemplateDirective, PoTableComponent, PoTableModule, PoTableRowTemplateArrowDirection, PoTableRowTemplateDirective, PoTabsComponent, PoTabsModule, PoTabsService, PoTagComponent, PoTagModule, PoTagOrientation, PoTagType, PoTextareaComponent, PoThemeA11yEnum, PoThemeModule, PoThemeService, PoThemeTypeEnum, PoTimeModule, PoTimePipe, PoTimepickerComponent, PoTimepickerModelFormat, PoTimepickerModule, PoTimerBaseComponent, PoTimerComponent, PoTimerFormat, PoTimerModule, PoToasterComponent, PoToasterMode, PoToasterModule, PoToasterOrientation, PoToasterType, PoToolbarComponent, PoToolbarModule, PoTooltipDirective, PoTooltipModule, PoTreeViewComponent, PoTreeViewModule, PoUploadComponent, PoUploadFile, PoUploadStatus, PoUrlComponent, PoWidgetComponent, PoWidgetModule, initializeLanguageDefault, mergePoI18nConfigs, poBreadcrumbLiterals, poChartLiteralsDefault, poDialogAlertLiteralsDefault, poDialogConfirmLiteralsDefault, poLanguageDefault, poLocaleDateSeparatorList, poLocaleDecimalSeparatorList, poLocaleDefault, poLocaleThousandSeparatorList, poLocales, poPageSlideLiteralsDefault, poTabsLiterals, poThemeDefault, poThemeDefaultAA, poThemeDefaultAAA, poThemeDefaultActions, poThemeDefaultActionsDark, poThemeDefaultBrands, poThemeDefaultBrandsDark, poThemeDefaultCategoricals, poThemeDefaultCategoricalsAA, poThemeDefaultCategoricalsDark, poThemeDefaultCategoricalsDarkAA, poThemeDefaultCategoricalsOverlayDark, poThemeDefaultCategoricalsOverlayDarkAA, poThemeDefaultDark, poThemeDefaultDarkValues, poThemeDefaultDarkValuesAA, poThemeDefaultFeedback, poThemeDefaultFeedbackDark, poThemeDefaultLight, poThemeDefaultLightValues, poThemeDefaultLightValuesAA, poThemeDefaultNeutrals, poThemeDefaultNeutralsDark, poThemeDefaultOverlayCategoricals, poThemeDefaultOverlayCategoricalsAA, poToasterLiterals, returnPoI18nService };
37158
+ export { AnimaliaIconDictionary, ForceBooleanComponentEnum, ForceOptionComponentEnum, I18N_CONFIG, InputBoolean, InputRequired, LOADING_ICON_COMPONENT, PO_CALENDAR_DEFAULT_RANGE_PRESETS, PO_CONTROL_POSITIONS, PoAccordionComponent, PoAccordionItemComponent, PoAccordionModule, PoActiveOverlayModule, PoActiveOverlayService, PoAvatarComponent, PoAvatarModule, PoBadgeComponent, PoBadgeModule, PoBreadcrumbComponent, PoBreadcrumbModule, PoButtonComponent, PoButtonGroupComponent, PoButtonGroupModule, PoButtonGroupToggle, PoButtonKind, PoButtonModule, PoButtonSize, PoButtonType, PoCalendarComponent, PoCalendarMode, PoCalendarModule, PoChartComponent, PoChartLabelFormat, PoChartModule, PoChartType, PoCheckboxComponent, PoCheckboxGroupComponent, PoCheckboxGroupModule, PoCheckboxModule, PoCheckboxSize, PoCleanComponent, PoCleanModule, PoColorPaletteModule, PoColorPaletteService, PoComboComponent, PoComboFilterMode, PoComboModule, PoComboOptionTemplateDirective, PoComponentInjectorModule, PoComponentInjectorService, PoComponentsModule, PoContainerComponent, PoContainerModule, PoContextMenuComponent, PoContextMenuModule, PoContextTabButtonComponent, PoContextTabsComponent, PoContextTabsModule, PoControlPositionModule, PoDateService, PoDateTimeModule, PoDatepickerComponent, PoDatepickerIsoFormat, PoDatepickerModule, PoDatepickerRangeComponent, PoDecimalComponent, PoDialogComponent, PoDialogModule, PoDialogService, PoDialogType, PoDirectivesModule, PoDisclaimerComponent, PoDisclaimerGroupComponent, PoDisclaimerGroupModule, PoDisclaimerModule, PoDividerComponent, PoDividerModule, PoDividerSize, PoDropdownComponent, PoDropdownModule, PoDynamicContainerComponent, PoDynamicFieldType, PoDynamicFormComponent, PoDynamicModule, PoDynamicSharedBase, PoDynamicViewComponent, PoEmailComponent, PoFieldContainerBottomComponent, PoFieldContainerComponent, PoFieldContainerModule, PoFieldModule, PoGaugeComponent, PoGaugeModule, PoGridComponent, PoGridModule, PoGuardsModule, PoHeaderComponent, PoHeaderModule, PoHelperComponent, PoHelperModule, PoHttpInterceptorModule, PoHttpInterceptorService, PoHttpRequestInterceptorService, PoHttpRequestModule, PoI18nModule, PoI18nPipe, PoI18nService, PoIconComponent, PoIconModule, PoImageComponent, PoImageModule, PoInfoComponent, PoInfoModule, PoInfoOrientation, PoInputComponent, PoInterceptorsModule, PoItemListComponent, PoLabelComponent, PoLabelModule, PoLanguageModule, PoLanguageService, PoLinkComponent, PoLinkModule, PoListBoxComponent, PoListBoxModule, PoListViewComponent, PoListViewContentTemplateDirective, PoListViewDetailTemplateDirective, PoListViewModule, PoLoadingComponent, PoLoadingIconComponent, PoLoadingModule, PoLoadingOverlayComponent, PoLoginComponent, PoLogoComponent, PoLogoModule, PoLookupComponent, PoLookupModalComponent, PoMask, PoMediaQueryModule, PoMediaQueryService, PoMenuComponent, PoMenuGlobalService, PoMenuHeaderTemplateDirective, PoMenuModule, PoMenuPanelComponent, PoMenuPanelModule, PoModalComponent, PoModalFooterComponent, PoModalModule, PoModule, PoMultiselectComponent, PoMultiselectFilterMode, PoMultiselectOptionTemplateDirective, PoNavbarComponent, PoNavbarModule, PoNotificationModule, PoNotificationService, PoNumberComponent, PoOverlayComponent, PoOverlayModule, PoPageActionsLayout, PoPageDefaultComponent, PoPageDetailComponent, PoPageEditComponent, PoPageHeaderType, PoPageListComponent, PoPageModule, PoPageSlideComponent, PoPageSlideFooterComponent, PoPageSlideModule, PoPasswordComponent, PoPipesModule, PoPopoverComponent, PoPopoverModule, PoPopupComponent, PoPopupModule, PoProgressComponent, PoProgressModule, PoProgressShape, PoProgressSize, PoProgressStatus, PoRadioComponent, PoRadioGroupComponent, PoRadioGroupModule, PoRadioModule, PoRichTextComponent, PoRichTextToolbarActions, PoSearchComponent, PoSearchFilterMode, PoSearchListComponent, PoSearchModule, PoSelectComponent, PoServicesModule, PoSkeletonAnimation, PoSkeletonComponent, PoSkeletonModule, PoSkeletonSize, PoSkeletonType, PoSkeletonVariant, PoSlideComponent, PoSlideContentTemplateDirective, PoSlideModule, PoStepComponent, PoStepperComponent, PoStepperModule, PoStepperOrientation, PoStepperStatus, PoSwitchComponent, PoSwitchLabelPosition, PoSwitchModule, PoTabButtonComponent, PoTabComponent, PoTabDropdownComponent, PoTableCellTemplateDirective, PoTableColumnFrozenDirective, PoTableColumnSortType, PoTableColumnSpacing, PoTableColumnTemplateDirective, PoTableComponent, PoTableModule, PoTableRowTemplateArrowDirection, PoTableRowTemplateDirective, PoTabsComponent, PoTabsModule, PoTabsService, PoTagComponent, PoTagModule, PoTagOrientation, PoTagType, PoTextareaComponent, PoThemeA11yEnum, PoThemeModule, PoThemeService, PoThemeTypeEnum, PoTimeModule, PoTimePipe, PoTimepickerComponent, PoTimepickerModelFormat, PoTimepickerModule, PoTimerBaseComponent, PoTimerComponent, PoTimerFormat, PoTimerModule, PoToasterComponent, PoToasterMode, PoToasterModule, PoToasterOrientation, PoToasterType, PoToolbarComponent, PoToolbarModule, PoTooltipDirective, PoTooltipModule, PoTreeViewComponent, PoTreeViewModule, PoUploadComponent, PoUploadFile, PoUploadStatus, PoUrlComponent, PoWidgetComponent, PoWidgetModule, initializeLanguageDefault, mergePoI18nConfigs, poBreadcrumbLiterals, poChartLiteralsDefault, poDialogAlertLiteralsDefault, poDialogConfirmLiteralsDefault, poLanguageDefault, poLocaleDateSeparatorList, poLocaleDecimalSeparatorList, poLocaleDefault, poLocaleThousandSeparatorList, poLocales, poPageSlideLiteralsDefault, poTabsLiterals, poThemeDefault, poThemeDefaultAA, poThemeDefaultAAA, poThemeDefaultActions, poThemeDefaultActionsDark, poThemeDefaultBrands, poThemeDefaultBrandsDark, poThemeDefaultCategoricals, poThemeDefaultCategoricalsAA, poThemeDefaultCategoricalsDark, poThemeDefaultCategoricalsDarkAA, poThemeDefaultCategoricalsOverlayDark, poThemeDefaultCategoricalsOverlayDarkAA, poThemeDefaultDark, poThemeDefaultDarkValues, poThemeDefaultDarkValuesAA, poThemeDefaultFeedback, poThemeDefaultFeedbackDark, poThemeDefaultLight, poThemeDefaultLightValues, poThemeDefaultLightValuesAA, poThemeDefaultNeutrals, poThemeDefaultNeutralsDark, poThemeDefaultOverlayCategoricals, poThemeDefaultOverlayCategoricalsAA, poToasterLiterals, returnPoI18nService };
36681
37159
  export type { ErrorAsyncProperties, PoAccordionLiterals, PoBreadcrumb, PoBreadcrumbItem, PoButtonGroupItem, PoCalendarRangePreset, PoChartAxisOptions, PoChartDataLabel, PoChartHeaderOptions, PoChartLiterals, PoChartOptions, PoChartSerie, PoCheckboxGroupOption, PoComboFilter, PoComboLiterals, PoComboOption, PoComboOptionGroup, PoContextMenuItem, PoDateSeparator, PoDatepickerRange, PoDatepickerRangeLiterals, PoDialogAlertLiterals, PoDialogAlertOptions, PoDialogConfirmLiterals, PoDialogConfirmOptions, PoDialogOptions, PoDisclaimer, PoDisclaimerGroup, PoDisclaimerGroupRemoveAction, PoDropdownAction, PoDynamicFormField, PoDynamicFormFieldChanged, PoDynamicFormFieldValidation, PoDynamicFormLoad, PoDynamicFormValidation, PoDynamicViewField, PoDynamicViewRequest, PoGaugeOptions, PoGaugeRanges, PoGridRowActions, PoHeaderActionPopoverAction, PoHeaderActionTool, PoHeaderActionToolItem, PoHeaderActions, PoHeaderBrand, PoHeaderLiterals, PoHeaderUser, PoHelperOptions, PoI18nConfig, PoI18nConfigContext, PoI18nConfigDefault, PoI18nLiterals, PoLanguage, PoListViewAction, PoListViewLiterals, PoLookupColumn, PoLookupFilter, PoLookupFilteredItemsParams, PoLookupLiterals, PoLookupResponseApi, PoMediaQueryTokens, PoMenuFilter, PoMenuItem, PoMenuItemBadge, PoMenuItemFiltered, PoMenuPanelItem, PoModalAction, PoMultiselectFilter, PoMultiselectLiterals, PoMultiselectOption, PoNavbarIconAction, PoNavbarItem, PoNotification, PoNumberSeparator, PoPage, PoPageAction, PoPageDefault, PoPageDefaultLiterals, PoPageDetailLiterals, PoPageEditLiterals, PoPageFilter, PoPageListLiterals, PoPopupAction, PoProgressAction, PoRadioGroupOption, PoResponseApi, PoRichTextToolbarButtonGroupItem, PoSearchFilterSelect, PoSearchLiterals, PoSearchOption, PoSelectOption, PoSelectOptionGroup, PoSlideItem, PoStepperItem, PoTab, PoTableAction, PoTableBoolean, PoTableColumn, PoTableColumnIcon, PoTableColumnLabel, PoTableColumnSort, PoTableDetail, PoTableDetailColumn, PoTableLiterals, PoTableSubtitleColumn, PoTagLiterals, PoTheme, PoThemeActive, PoThemeColor, PoThemeColorAction, PoThemeColorCategorical, PoThemeColorFeedback, PoThemeColorNeutral, PoThemeToken, PoThemeTokens, PoThemeType, PoToaster, PoToolbarAction, PoToolbarProfile, PoTreeViewItem, PoUploadFileRestrictions, PoUploadLiterals, PoWidgetAvatar, PoWidgetLiterals, poThemeColorBrand };