@po-ui/ng-components 21.12.0 → 21.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/{po-ui-ng-components-po-chart-modal-table.component-CKJDZQRS.mjs → po-ui-ng-components-po-chart-modal-table.component-BPYsbMKd.mjs} +4 -4
- 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
- package/fesm2022/po-ui-ng-components.mjs +2538 -1449
- package/fesm2022/po-ui-ng-components.mjs.map +1 -1
- package/lib/components/po-button/po-button.component.d.ts +2 -0
- package/lib/components/po-calendar/po-calendar-base.component.d.ts +3 -0
- package/lib/components/po-calendar/po-calendar-mode.enum.d.ts +3 -1
- package/lib/components/po-calendar/po-calendar.component.d.ts +22 -1
- package/lib/components/po-dropdown/po-dropdown-action.interface.d.ts +7 -6
- package/lib/components/po-dropdown/po-dropdown-base.component.d.ts +29 -0
- package/lib/components/po-dynamic/po-dynamic-form/interfaces/po-dynamic-form-field.interface.d.ts +89 -10
- package/lib/components/po-field/po-datepicker/po-datepicker-base.component.d.ts +30 -0
- package/lib/components/po-field/po-datepicker/po-datepicker.component.d.ts +31 -6
- package/lib/components/po-field/po-timepicker/enums/po-timepicker-iso-format.enum.d.ts +1 -1
- package/lib/components/po-field/po-timepicker/po-timepicker.component.d.ts +22 -2
- package/lib/components/po-page/index.d.ts +2 -0
- package/lib/components/po-page/interfaces/po-page-action.interface.d.ts +26 -4
- package/lib/components/po-page/po-page-content/po-page-content.component.d.ts +10 -4
- package/lib/components/po-page/po-page-default/enums/po-page-actions-layout.enum.d.ts +26 -0
- package/lib/components/po-page/po-page-default/enums/po-page-header-type.enum.d.ts +25 -0
- package/lib/components/po-page/po-page-default/po-page-default-base.component.d.ts +109 -36
- package/lib/components/po-page/po-page-default/po-page-default.component.d.ts +8 -2
- package/lib/components/po-page/po-page-header/po-page-header-base.component.d.ts +2 -0
- package/lib/components/po-page/po-page.module.d.ts +3 -2
- package/lib/components/po-popup/po-popup-action.interface.d.ts +32 -57
- package/lib/components/po-timer/po-timer-base.component.d.ts +5 -0
- package/lib/components/po-timer/po-timer.component.d.ts +25 -9
- package/lib/services/po-theme/helpers/types/po-theme-dark-defaults-AA.constant.d.ts +1 -1
- package/lib/services/po-theme/helpers/types/po-theme-dark-defaults.constant.d.ts +1 -1
- package/package.json +4 -4
- package/po-ui-ng-components-21.13.1.tgz +0 -0
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-update/v14/index.js +1 -1
- package/schematics/ng-update/v15/index.js +1 -1
- package/schematics/ng-update/v16/index.js +1 -1
- package/schematics/ng-update/v17/index.js +1 -1
- package/schematics/ng-update/v18/index.js +2 -2
- package/schematics/ng-update/v19/index.js +2 -2
- package/schematics/ng-update/v2/index.js +1 -1
- package/schematics/ng-update/v20/index.js +2 -2
- package/schematics/ng-update/v21/index.js +1 -1
- package/schematics/ng-update/v3/index.js +1 -1
- package/schematics/ng-update/v4/index.js +1 -1
- package/schematics/ng-update/v5/index.js +1 -1
- package/schematics/ng-update/v6/index.js +1 -1
- package/types/po-ui-ng-components.d.ts +508 -148
- package/po-ui-ng-components-21.12.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
|
|
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
|
-
*
|
|
2087
|
+
* Ícone exibido ao lado esquerdo do rótulo.
|
|
2085
2088
|
*
|
|
2086
|
-
*
|
|
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
2092
|
* ```
|
|
2095
|
-
*
|
|
2096
|
-
* [p-property]="[{ label: 'FA ICON', icon: 'fa fa-icon-podcast' }]">
|
|
2097
|
-
* </po-component>
|
|
2098
|
-
* ```
|
|
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
|
-
* @
|
|
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
|
-
*
|
|
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
|
|
2118
|
+
* Define a cor do item.
|
|
2142
2119
|
*
|
|
2143
2120
|
* Valores válidos:
|
|
2144
2121
|
* - `default`
|
|
2145
|
-
* - `danger`
|
|
2122
|
+
* - `danger`
|
|
2146
2123
|
*/
|
|
2147
2124
|
type?: string;
|
|
2148
2125
|
/**
|
|
2126
|
+
* @optional
|
|
2127
|
+
*
|
|
2149
2128
|
* @description
|
|
2150
2129
|
*
|
|
2151
|
-
* URL
|
|
2130
|
+
* URL para redirecionamento. Aceita rotas internas e links externos.
|
|
2152
2131
|
*
|
|
2153
|
-
* No componente `po-dropdown`,
|
|
2154
|
-
*
|
|
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
|
-
* @
|
|
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
|
-
*
|
|
2149
|
+
* @description
|
|
2176
2150
|
*
|
|
2177
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
2171
|
+
* @optional
|
|
2196
2172
|
*
|
|
2197
|
-
*
|
|
2173
|
+
* @description
|
|
2174
|
+
*
|
|
2175
|
+
* Array de ações (`PoDropdownAction`) usado para criar agrupadores de subitens (submenus).
|
|
2198
2176
|
*
|
|
2199
|
-
* >
|
|
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
|
/**
|
|
@@ -14231,6 +14263,28 @@ declare abstract class PoDatepickerBaseComponent implements ControlValueAccessor
|
|
|
14231
14263
|
protected languageService: PoLanguageService;
|
|
14232
14264
|
protected cd: ChangeDetectorRef;
|
|
14233
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;
|
|
14234
14288
|
/**
|
|
14235
14289
|
*
|
|
14236
14290
|
* @deprecated v23.x.x use `p-helper`
|
|
@@ -14529,6 +14583,8 @@ declare abstract class PoDatepickerBaseComponent implements ControlValueAccessor
|
|
|
14529
14583
|
* - `mm/dd/yyyy`
|
|
14530
14584
|
* - `yyyy/mm/dd`
|
|
14531
14585
|
*
|
|
14586
|
+
* Propriedade incompatível com as variações month-year e year.
|
|
14587
|
+
*
|
|
14532
14588
|
* @default `dd/mm/yyyy`
|
|
14533
14589
|
*/
|
|
14534
14590
|
set format(value: string);
|
|
@@ -14541,6 +14597,8 @@ declare abstract class PoDatepickerBaseComponent implements ControlValueAccessor
|
|
|
14541
14597
|
* Padrão de formatação para saída do *model*, independentemente do formato de entrada.
|
|
14542
14598
|
*
|
|
14543
14599
|
* > Veja os valores válidos no *enum* `PoDatepickerIsoFormat`.
|
|
14600
|
+
*
|
|
14601
|
+
* Propriedade incompatível com as variações month-year e year.
|
|
14544
14602
|
*/
|
|
14545
14603
|
set isoFormat(value: PoDatepickerIsoFormat);
|
|
14546
14604
|
get isoFormat(): PoDatepickerIsoFormat;
|
|
@@ -14599,6 +14657,10 @@ declare abstract class PoDatepickerBaseComponent implements ControlValueAccessor
|
|
|
14599
14657
|
validate(c: AbstractControl): {
|
|
14600
14658
|
[key: string]: any;
|
|
14601
14659
|
};
|
|
14660
|
+
private isMonthYearOrYearInvalid;
|
|
14661
|
+
private isDateRangeValidForMode;
|
|
14662
|
+
private validateMonthYearRange;
|
|
14663
|
+
private validateYearRange;
|
|
14602
14664
|
protected validateModel(model: any): void;
|
|
14603
14665
|
protected buildMask(format?: string): PoMask;
|
|
14604
14666
|
formatTimezoneAndHour(offset: number): void;
|
|
@@ -14606,7 +14668,7 @@ declare abstract class PoDatepickerBaseComponent implements ControlValueAccessor
|
|
|
14606
14668
|
abstract writeValue(value: any): void;
|
|
14607
14669
|
abstract refreshValue(value: Date): void;
|
|
14608
14670
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoDatepickerBaseComponent, never>;
|
|
14609
|
-
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>;
|
|
14610
14672
|
static ngAcceptInputType_autoFocus: any;
|
|
14611
14673
|
static ngAcceptInputType_appendBox: any;
|
|
14612
14674
|
}
|
|
@@ -14626,6 +14688,16 @@ declare abstract class PoDatepickerBaseComponent implements ControlValueAccessor
|
|
|
14626
14688
|
* <file name="sample-po-datepicker-labs/sample-po-datepicker-labs.component.ts"> </file>
|
|
14627
14689
|
* </example>
|
|
14628
14690
|
*
|
|
14691
|
+
* <example name="po-datepicker-year" title="PO Datepicker Year">
|
|
14692
|
+
* <file name="sample-po-datepicker-year/sample-po-datepicker-year.component.html"> </file>
|
|
14693
|
+
* <file name="sample-po-datepicker-year/sample-po-datepicker-year.component.ts"> </file>
|
|
14694
|
+
* </example>
|
|
14695
|
+
*
|
|
14696
|
+
* <example name="po-datepicker-month-year" title="PO Datepicker MonthYear">
|
|
14697
|
+
* <file name="sample-po-datepicker-month-year/sample-po-datepicker-month-year.component.html"> </file>
|
|
14698
|
+
* <file name="sample-po-datepicker-month-year/sample-po-datepicker-month-year.component.ts"> </file>
|
|
14699
|
+
* </example>
|
|
14700
|
+
*
|
|
14629
14701
|
* <example name="po-datepicker-airfare" title="PO Datepicker - Airfare">
|
|
14630
14702
|
* <file name="sample-po-datepicker-airfare/sample-po-datepicker-airfare.component.html"> </file>
|
|
14631
14703
|
* <file name="sample-po-datepicker-airfare/sample-po-datepicker-airfare.component.ts"> </file>
|
|
@@ -14645,10 +14717,6 @@ declare class PoDatepickerComponent extends PoDatepickerBaseComponent implements
|
|
|
14645
14717
|
inputEl: ElementRef;
|
|
14646
14718
|
iconClean: ElementRef<HTMLElement>;
|
|
14647
14719
|
helperEl?: PoHelperComponent;
|
|
14648
|
-
/** Rótulo do campo. */
|
|
14649
|
-
label?: string;
|
|
14650
|
-
/** Texto de apoio do campo. */
|
|
14651
|
-
help?: string;
|
|
14652
14720
|
displayAdditionalHelp: boolean;
|
|
14653
14721
|
el: ElementRef;
|
|
14654
14722
|
hour: string;
|
|
@@ -14693,7 +14761,7 @@ declare class PoDatepickerComponent extends PoDatepickerBaseComponent implements
|
|
|
14693
14761
|
getAdditionalHelpTooltip(): string;
|
|
14694
14762
|
togglePicker(focusInput?: boolean): void;
|
|
14695
14763
|
closeCalendar(focusInput?: boolean): void;
|
|
14696
|
-
dateSelected(event?:
|
|
14764
|
+
dateSelected(event?: any): void;
|
|
14697
14765
|
wasClickedOnPicker(event: any): void;
|
|
14698
14766
|
hasInvalidClass(): boolean;
|
|
14699
14767
|
getErrorPattern(): string;
|
|
@@ -14703,7 +14771,7 @@ declare class PoDatepickerComponent extends PoDatepickerBaseComponent implements
|
|
|
14703
14771
|
eventOnClick($event: any): void;
|
|
14704
14772
|
onKeyDown(event: KeyboardEvent): void;
|
|
14705
14773
|
onKeyPress(event: any): void;
|
|
14706
|
-
formatToDate(value:
|
|
14774
|
+
formatToDate(value: any): string;
|
|
14707
14775
|
refreshValue(value: Date): void;
|
|
14708
14776
|
/**
|
|
14709
14777
|
* Método que exibe `p-helper` ou executa a ação definida em `p-helper{eventOnClick}` ou em `p-additionalHelp`.
|
|
@@ -14731,13 +14799,32 @@ declare class PoDatepickerComponent extends PoDatepickerBaseComponent implements
|
|
|
14731
14799
|
* ```
|
|
14732
14800
|
*/
|
|
14733
14801
|
showAdditionalHelp(): boolean;
|
|
14802
|
+
private handleSpecialModes;
|
|
14803
|
+
private processValue;
|
|
14804
|
+
private handleDateInstance;
|
|
14805
|
+
private handleIsoString;
|
|
14806
|
+
private clearValue;
|
|
14807
|
+
private resetInput;
|
|
14808
|
+
private finalizeWrite;
|
|
14734
14809
|
writeValue(value: any): void;
|
|
14735
14810
|
isValidDateIso(value: string): boolean;
|
|
14736
14811
|
isValidExtendedIso(value: any): boolean;
|
|
14737
14812
|
hasOverlayClass(element: any): any;
|
|
14738
14813
|
verifyErrorAsync(value: any): void;
|
|
14739
14814
|
verifyMobile(): RegExpMatchArray;
|
|
14815
|
+
private handleMonthYearKeyup;
|
|
14816
|
+
private handleYearKeyup;
|
|
14817
|
+
private handleMonthYearBlur;
|
|
14818
|
+
private handleYearBlur;
|
|
14819
|
+
private applyMonthYearValue;
|
|
14820
|
+
private applyYearValue;
|
|
14821
|
+
private parseMonthYearInput;
|
|
14822
|
+
private syncCalendarMonthYear;
|
|
14823
|
+
private syncCalendarYear;
|
|
14824
|
+
private writeMonthYearValue;
|
|
14825
|
+
private writeYearValue;
|
|
14740
14826
|
private controlChangeEmitter;
|
|
14827
|
+
private isValidInputForMode;
|
|
14741
14828
|
private hasAttrCalendar;
|
|
14742
14829
|
private initializeListeners;
|
|
14743
14830
|
private isAdditionalHelpEventTriggered;
|
|
@@ -14757,11 +14844,11 @@ declare class PoDatepickerComponent extends PoDatepickerBaseComponent implements
|
|
|
14757
14844
|
helperSettings?: any;
|
|
14758
14845
|
};
|
|
14759
14846
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoDatepickerComponent, never>;
|
|
14760
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PoDatepickerComponent, "po-datepicker", never, {
|
|
14847
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PoDatepickerComponent, "po-datepicker", never, {}, {}, never, never, false, never>;
|
|
14761
14848
|
}
|
|
14762
14849
|
|
|
14763
14850
|
/**
|
|
14764
|
-
* @usedBy PoTimepickerComponent
|
|
14851
|
+
* @usedBy PoTimepickerComponent, PoDynamicFormComponent
|
|
14765
14852
|
*
|
|
14766
14853
|
* @description
|
|
14767
14854
|
*
|
|
@@ -15012,6 +15099,11 @@ declare class PoTimerBaseComponent implements ControlValueAccessor {
|
|
|
15012
15099
|
protected formatValue(value: number): string;
|
|
15013
15100
|
/** Verifica se uma hora está desabilitada com base nos limites min/max. */
|
|
15014
15101
|
protected isHourDisabled(hour: number): boolean;
|
|
15102
|
+
/**
|
|
15103
|
+
* Verifica se um período (AM/PM) está completamente desabilitado.
|
|
15104
|
+
* Retorna `true` quando todas as horas do período estão fora do range min/max.
|
|
15105
|
+
*/
|
|
15106
|
+
protected isPeriodDisabled(targetPeriod: string): boolean;
|
|
15015
15107
|
/** Verifica se um minuto está desabilitado com base nos limites min/max e hora selecionada. */
|
|
15016
15108
|
protected isMinuteDisabled(minute: number): boolean;
|
|
15017
15109
|
/** Verifica se um segundo está desabilitado com base nos limites min/max, hora e minuto selecionados. */
|
|
@@ -15072,10 +15164,10 @@ type PoTimerColumnType = 'hour' | 'minute' | 'second' | 'period';
|
|
|
15072
15164
|
* </example>
|
|
15073
15165
|
*/
|
|
15074
15166
|
declare class PoTimerComponent extends PoTimerBaseComponent implements OnInit, OnChanges, AfterViewInit, AfterViewChecked, OnDestroy {
|
|
15075
|
-
hourCells: QueryList<
|
|
15076
|
-
minuteCells: QueryList<
|
|
15077
|
-
secondCells: QueryList<
|
|
15078
|
-
periodCells: QueryList<
|
|
15167
|
+
hourCells: QueryList<PoButtonComponent>;
|
|
15168
|
+
minuteCells: QueryList<PoButtonComponent>;
|
|
15169
|
+
secondCells: QueryList<PoButtonComponent>;
|
|
15170
|
+
periodCells: QueryList<PoButtonComponent>;
|
|
15079
15171
|
hourItemsRefs: QueryList<ElementRef<HTMLElement>>;
|
|
15080
15172
|
minuteItemsRefs: QueryList<ElementRef<HTMLElement>>;
|
|
15081
15173
|
secondItemsRefs: QueryList<ElementRef<HTMLElement>>;
|
|
@@ -15110,6 +15202,8 @@ declare class PoTimerComponent extends PoTimerBaseComponent implements OnInit, O
|
|
|
15110
15202
|
activeDescendantIds: Record<PoTimerColumnType, string>;
|
|
15111
15203
|
disabledMinuteCache: Set<number>;
|
|
15112
15204
|
disabledSecondCache: Set<number>;
|
|
15205
|
+
private ariaSyncNeeded;
|
|
15206
|
+
private cachedCellPairs;
|
|
15113
15207
|
constructor();
|
|
15114
15208
|
ngOnInit(): void;
|
|
15115
15209
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -15181,7 +15275,10 @@ declare class PoTimerComponent extends PoTimerBaseComponent implements OnInit, O
|
|
|
15181
15275
|
* o foco diretamente pois nao usam o padrao de roving focus.
|
|
15182
15276
|
*/
|
|
15183
15277
|
private getVisibleColumnTypes;
|
|
15184
|
-
private
|
|
15278
|
+
private updateAllCachedCellPairs;
|
|
15279
|
+
private subscribeToCellChanges;
|
|
15280
|
+
private updateCachedCellPairs;
|
|
15281
|
+
private markAriaSyncNeeded;
|
|
15185
15282
|
/** Atualiza aria-activedescendant para o indice focado no displayArray. */
|
|
15186
15283
|
private updateActiveDescendant;
|
|
15187
15284
|
/**
|
|
@@ -15228,16 +15325,26 @@ declare class PoTimerComponent extends PoTimerBaseComponent implements OnInit, O
|
|
|
15228
15325
|
* ele substitui o item equivalente na secao fixa para manter exatamente
|
|
15229
15326
|
* sourceLength itens com role="option".
|
|
15230
15327
|
*
|
|
15231
|
-
*
|
|
15232
|
-
* (
|
|
15233
|
-
*
|
|
15328
|
+
* Todos os botoes nativos recebem os atributos ARIA corretos
|
|
15329
|
+
* (role, aria-selected, aria-setsize, aria-posinset) propagados
|
|
15330
|
+
* dos data-attributes do host <po-button>.
|
|
15331
|
+
*
|
|
15332
|
+
* Nao usa `inert` — o infinity scroll repete o array 3x e marcar
|
|
15333
|
+
* secoes como inert causava botoes desabilitados durante transicoes
|
|
15334
|
+
* de scroll. Em vez disso, duplicatas recebem role="none" e
|
|
15335
|
+
* aria-hidden="true" no <button> nativo para que NVDA nao as conte,
|
|
15336
|
+
* mas permanecem clicaveis visualmente.
|
|
15337
|
+
*
|
|
15338
|
+
* A secao canonica e determinada pela secao do item focado,
|
|
15339
|
+
* garantindo que exatamente sourceLength itens tenham role="option".
|
|
15234
15340
|
*/
|
|
15235
15341
|
private syncAriaToNativeButtons;
|
|
15236
15342
|
/**
|
|
15237
15343
|
* Determina se um item do displayArray e canonico para fins de ARIA.
|
|
15238
15344
|
*
|
|
15239
15345
|
* - Sem infinity scroll: todos sao canonicos.
|
|
15240
|
-
* - Com infinity scroll:
|
|
15346
|
+
* - Com infinity scroll: apenas itens na secao canonica (determinada
|
|
15347
|
+
* pelo offset visivel) recebem role="option".
|
|
15241
15348
|
*/
|
|
15242
15349
|
private isCanonicalDisplayItem;
|
|
15243
15350
|
/**
|
|
@@ -15690,6 +15797,7 @@ declare class PoTimepickerComponent extends PoTimepickerBaseComponent implements
|
|
|
15690
15797
|
get hourPlaceholder(): string;
|
|
15691
15798
|
get minutePlaceholder(): string;
|
|
15692
15799
|
get secondPlaceholder(): string;
|
|
15800
|
+
get isPlaceholder(): boolean;
|
|
15693
15801
|
private get customPlaceholderSegments();
|
|
15694
15802
|
private getCustomPlaceholderSegment;
|
|
15695
15803
|
onHostFocusOut(event: FocusEvent): void;
|
|
@@ -15749,6 +15857,7 @@ declare class PoTimepickerComponent extends PoTimepickerBaseComponent implements
|
|
|
15749
15857
|
writeValue(value: any): void;
|
|
15750
15858
|
verifyMobile(): RegExpMatchArray;
|
|
15751
15859
|
handleCleanKeyboardTab(event: KeyboardEvent): void;
|
|
15860
|
+
handleTimepickerButtonKeyboardTab(event: KeyboardEvent): void;
|
|
15752
15861
|
onTimerKeyDown(event: KeyboardEvent): void;
|
|
15753
15862
|
onTimerBoundaryTab(payload: {
|
|
15754
15863
|
direction: 'forward' | 'backward';
|
|
@@ -15775,9 +15884,22 @@ declare class PoTimepickerComponent extends PoTimepickerBaseComponent implements
|
|
|
15775
15884
|
private getDefaultPeriodDisplay;
|
|
15776
15885
|
/** Sincroniza os valores dos elementos input nativos com as propriedades de exibicao. */
|
|
15777
15886
|
private syncSegmentInputElements;
|
|
15778
|
-
/**
|
|
15887
|
+
/**
|
|
15888
|
+
* Avança o foco para o próximo input de segmento ou elemento focável interno.
|
|
15889
|
+
* Retorna `true` se o foco foi movido, `false` se não há próximo elemento focável.
|
|
15890
|
+
*/
|
|
15779
15891
|
private advanceToNextSegment;
|
|
15780
|
-
/**
|
|
15892
|
+
/**
|
|
15893
|
+
* Tenta focar o botão de limpar ou o botão do timer.
|
|
15894
|
+
* Retorna `true` se o foco foi movido, `false` se nenhum elemento está focável.
|
|
15895
|
+
*/
|
|
15896
|
+
private focusCleanOrButton;
|
|
15897
|
+
private focusPreviousPeriodSegment;
|
|
15898
|
+
private focusNextPeriodSegment;
|
|
15899
|
+
/**
|
|
15900
|
+
* Retorna o foco para o input de segmento anterior.
|
|
15901
|
+
* Retorna `true` se o foco foi movido, `false` se não há segmento anterior focável.
|
|
15902
|
+
*/
|
|
15781
15903
|
private advanceToPreviousSegment;
|
|
15782
15904
|
/** Foca o ultimo input de segmento visivel. */
|
|
15783
15905
|
private focusLastSegment;
|
|
@@ -15785,6 +15907,11 @@ declare class PoTimepickerComponent extends PoTimepickerBaseComponent implements
|
|
|
15785
15907
|
private isLastSegment;
|
|
15786
15908
|
/** Alterna entre AM e PM no display de periodo e atualiza o modelo. */
|
|
15787
15909
|
private togglePeriod;
|
|
15910
|
+
/**
|
|
15911
|
+
* Verifica se um período (AM/PM) está completamente fora do range min/max.
|
|
15912
|
+
* AM corresponde às horas 0-11 em 24h, PM às horas 12-23.
|
|
15913
|
+
*/
|
|
15914
|
+
private isPeriodBlocked;
|
|
15788
15915
|
/** Incrementa ou decrementa o valor de um segmento na direcao indicada (+1 ou -1), respeitando limites e intervalos. */
|
|
15789
15916
|
private incrementSegment;
|
|
15790
15917
|
private incrementHourSegment;
|
|
@@ -24507,7 +24634,13 @@ interface PoDynamicFormField extends PoDynamicField {
|
|
|
24507
24634
|
* Retorna um objeto `KeyboardEvent` com informações sobre a tecla.
|
|
24508
24635
|
*/
|
|
24509
24636
|
keydown?: Function;
|
|
24510
|
-
/**
|
|
24637
|
+
/**
|
|
24638
|
+
* Define a obrigatoriedade do campo.
|
|
24639
|
+
*
|
|
24640
|
+
* **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-timepicker`, `po-input`, `po-number`,
|
|
24641
|
+
* `po-decimal`, `po-select`, `po-radio-group`, `po-combo`, `po-lookup`, `po-checkbox-group`, `po-multiselect`,
|
|
24642
|
+
* `po-textarea`, `po-password``, `po-upload`.
|
|
24643
|
+
*/
|
|
24511
24644
|
required?: boolean;
|
|
24512
24645
|
/**
|
|
24513
24646
|
*
|
|
@@ -24515,7 +24648,7 @@ interface PoDynamicFormField extends PoDynamicField {
|
|
|
24515
24648
|
*
|
|
24516
24649
|
* > Necessário que a propriedade `required` esteja habilitada.
|
|
24517
24650
|
*
|
|
24518
|
-
* **Componentes compatíveis:** `po-datepicker`, `po-input`, `po-number`, `po-decimal`, `po-password`.
|
|
24651
|
+
* **Componentes compatíveis:** `po-datepicker`, `po-timepicker`, `po-input`, `po-number`, `po-decimal`, `po-password`.
|
|
24519
24652
|
*/
|
|
24520
24653
|
requiredFieldErrorMessage?: boolean;
|
|
24521
24654
|
/**
|
|
@@ -24524,6 +24657,10 @@ interface PoDynamicFormField extends PoDynamicField {
|
|
|
24524
24657
|
* > A indicação não será exibida, se:
|
|
24525
24658
|
* - O campo for `required`, ou;
|
|
24526
24659
|
* - Não possuir `help` e `label`.
|
|
24660
|
+
*
|
|
24661
|
+
* **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-timepicker`, `po-input`, `po-number`,
|
|
24662
|
+
* `po-decimal`, `po-select`, `po-radio-group`, `po-combo`, `po-lookup`, `po-checkbox-group`, `po-multiselect`,
|
|
24663
|
+
* `po-textarea`, `po-password`.
|
|
24527
24664
|
*/
|
|
24528
24665
|
optional?: boolean;
|
|
24529
24666
|
/**
|
|
@@ -24752,14 +24889,15 @@ interface PoDynamicFormField extends PoDynamicField {
|
|
|
24752
24889
|
* - required;
|
|
24753
24890
|
*
|
|
24754
24891
|
* > Esta mensagem pode ser exibida quando o campo estiver vazio, caso seja requerido. Em casos de componentes como
|
|
24755
|
-
* `po-datepicker`, `po-input`, `po-number`, `po-decimal`, `po-password`, é necessário que a propriedade
|
|
24892
|
+
* `po-datepicker`, `po-input`, `po-number`, `po-decimal`, `po-password`, `po-timepicker`, é necessário que a propriedade
|
|
24756
24893
|
* `requiredFieldErrorMessage` esteja como `true` para que a mensagem seja exibida com o campo vazio. Componentes
|
|
24757
24894
|
* como `po-datepicker-range`, `po-select`, `po-checkbox-group`, `po-radio-group`, `po-multiselect`, `po-combo`,
|
|
24758
24895
|
* `po-lookup` e `po-textarea` não é necessário passar a propriedade `requiredFieldErrorMessage`.
|
|
24759
24896
|
*
|
|
24760
24897
|
*
|
|
24761
24898
|
* **Componentes compatíveis:** `po-checkbox-group`, `po-combo`, `po-datepicker`, `po-datepicker-range`,
|
|
24762
|
-
* `po-decimal`, `po-input`, `po-lookup`, `po-multiselect`, `po-number`, `po-password`, `po-radio-group`, `po-select`,
|
|
24899
|
+
* `po-decimal`, `po-input`, `po-lookup`, `po-multiselect`, `po-number`, `po-password`, `po-radio-group`, `po-select`,
|
|
24900
|
+
* `po-switch`, `po-textarea`, `po-timepicker`.
|
|
24763
24901
|
*/
|
|
24764
24902
|
errorMessage?: string;
|
|
24765
24903
|
/**
|
|
@@ -24773,7 +24911,8 @@ interface PoDynamicFormField extends PoDynamicField {
|
|
|
24773
24911
|
* e um tooltip será exibido ao passar o mouse sobre a mensagem para mostrar o conteúdo completo.
|
|
24774
24912
|
*
|
|
24775
24913
|
* **Componentes compatíveis:** `po-checkbox-group`, `po-combo`, `po-datepicker`, `po-datepicker-range`,
|
|
24776
|
-
* `po-decimal`, `po-input`, `po-lookup`, `po-multiselect`, `po-number`, `po-password`, `po-radio-group`, `po-select`,
|
|
24914
|
+
* `po-decimal`, `po-input`, `po-lookup`, `po-multiselect`, `po-number`, `po-password`, `po-radio-group`, `po-select`,
|
|
24915
|
+
* `po-switch`, `po-textarea`, `po-timepicker`.
|
|
24777
24916
|
*
|
|
24778
24917
|
* @default `false`
|
|
24779
24918
|
*/
|
|
@@ -24814,6 +24953,8 @@ interface PoDynamicFormField extends PoDynamicField {
|
|
|
24814
24953
|
*
|
|
24815
24954
|
* Também pode-se utilizar em conjunto com `searchService`, informando uma lista de propriedades que será utilizado
|
|
24816
24955
|
* para formatação da exibição no campo, por exemplo: ["id", "name"].
|
|
24956
|
+
*
|
|
24957
|
+
* **Componentes compatíveis:** `po-datepicker`, `po-timepicker`, `po-lookup`.
|
|
24817
24958
|
*/
|
|
24818
24959
|
format?: string | Array<string>;
|
|
24819
24960
|
/**
|
|
@@ -24863,7 +25004,12 @@ interface PoDynamicFormField extends PoDynamicField {
|
|
|
24863
25004
|
* array.
|
|
24864
25005
|
*/
|
|
24865
25006
|
order?: number;
|
|
24866
|
-
/**
|
|
25007
|
+
/**
|
|
25008
|
+
* Mensagem que será exibida enquanto o campo não estiver preenchido.
|
|
25009
|
+
*
|
|
25010
|
+
* **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-timepicker`, `po-input`, `po-number`,
|
|
25011
|
+
* `po-decimal`, `po-select`, `po-combo`, `po-lookup`, `po-multiselect`, `po-textarea`, `po-password`.
|
|
25012
|
+
*/
|
|
24867
25013
|
placeholder?: string;
|
|
24868
25014
|
/**
|
|
24869
25015
|
* Define a localidade a ser utilizada no componente.
|
|
@@ -24878,7 +25024,8 @@ interface PoDynamicFormField extends PoDynamicField {
|
|
|
24878
25024
|
* ```
|
|
24879
25025
|
*
|
|
24880
25026
|
* > Para ver quais linguagens suportadas acesse [`I18n`](documentation/po-i18n)
|
|
24881
|
-
*
|
|
25027
|
+
*
|
|
25028
|
+
* **Componentes compatíveis:** `po-datepicker`, `po-decimal`, `po-timepicker`.
|
|
24882
25029
|
*/
|
|
24883
25030
|
locale?: string;
|
|
24884
25031
|
/**
|
|
@@ -24889,7 +25036,8 @@ interface PoDynamicFormField extends PoDynamicField {
|
|
|
24889
25036
|
range?: boolean;
|
|
24890
25037
|
/** Indica que o campo será somente leitura.
|
|
24891
25038
|
*
|
|
24892
|
-
* **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-
|
|
25039
|
+
* **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-timepicker`, `po-input`, `po-number`,
|
|
25040
|
+
* `po-decimal`, `po-select`, `po-textarea`, `po-password`.
|
|
24893
25041
|
*/
|
|
24894
25042
|
readonly?: boolean;
|
|
24895
25043
|
/**
|
|
@@ -24900,13 +25048,15 @@ interface PoDynamicFormField extends PoDynamicField {
|
|
|
24900
25048
|
multiple?: boolean;
|
|
24901
25049
|
/** Se verdadeiro, o campo receberá um botão para ser limpo.
|
|
24902
25050
|
*
|
|
24903
|
-
* **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-input`, `po-number`, `po-decimal`,
|
|
25051
|
+
* **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-input`, `po-number`, `po-decimal`,
|
|
25052
|
+
* `po-combo`, `po-lookup`, `po-password`, `po-timepicker`.
|
|
24904
25053
|
*/
|
|
24905
25054
|
clean?: boolean;
|
|
24906
25055
|
/**
|
|
24907
25056
|
* Define a propriedade nativa `autocomplete` do campo como off.
|
|
24908
25057
|
*
|
|
24909
|
-
* **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-input`, `po-number`, `po-decimal`,
|
|
25058
|
+
* **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-input`, `po-number`, `po-decimal`,
|
|
25059
|
+
* `po-lookup`, `po-password`, `po-timepicker`.
|
|
24910
25060
|
*/
|
|
24911
25061
|
noAutocomplete?: boolean;
|
|
24912
25062
|
/**
|
|
@@ -25179,6 +25329,10 @@ interface PoDynamicFormField extends PoDynamicField {
|
|
|
25179
25329
|
*
|
|
25180
25330
|
* > Não será exibida a indicação se:
|
|
25181
25331
|
* - Não possuir `p-help` e/ou `p-label`.
|
|
25332
|
+
*
|
|
25333
|
+
* **Componentes compatíveis:** `po-datepicker`, `po-datepicker-range`, `po-timepicker`, `po-input`, `po-number`,
|
|
25334
|
+
* `po-decimal`, `po-select`, `po-radio-group`, `po-combo`, `po-lookup`, `po-checkbox-group`, `po-multiselect`,
|
|
25335
|
+
* `po-textarea`, `po-password`, `po-upload`.
|
|
25182
25336
|
*/
|
|
25183
25337
|
showRequired?: boolean;
|
|
25184
25338
|
/**
|
|
@@ -25320,6 +25474,57 @@ interface PoDynamicFormField extends PoDynamicField {
|
|
|
25320
25474
|
* **Compatível com todos os componentes**
|
|
25321
25475
|
*/
|
|
25322
25476
|
compactLabel?: boolean;
|
|
25477
|
+
/**
|
|
25478
|
+
* Define o modo de seleção do `po-datepicker`.
|
|
25479
|
+
*
|
|
25480
|
+
* Valores aceitos:
|
|
25481
|
+
* - `'month-year'`: exibe seleção de mês e ano (formato `MM/YYYY`)
|
|
25482
|
+
* - `'year'`: exibe seleção apenas de ano (formato `YYYY`)
|
|
25483
|
+
*
|
|
25484
|
+
* **Componente compatível:** `po-datepicker`
|
|
25485
|
+
*/
|
|
25486
|
+
mode?: 'month-year' | 'year';
|
|
25487
|
+
/**
|
|
25488
|
+
* Define o limite de anos exibidos na lista de anos do `po-datepicker` nos modos `month-year` e `year`.
|
|
25489
|
+
*
|
|
25490
|
+
* @default `150`
|
|
25491
|
+
*
|
|
25492
|
+
* **Componente compatível:** `po-datepicker`
|
|
25493
|
+
*/
|
|
25494
|
+
yearRangeLimit?: number;
|
|
25495
|
+
/**
|
|
25496
|
+
* Habilita a exibição dos presets padrão de intervalos de data no painel lateral do calendário.
|
|
25497
|
+
*
|
|
25498
|
+
* Aceita os seguintes valores:
|
|
25499
|
+
* - `true`: exibe todos os presets padrão.
|
|
25500
|
+
* - `false`: não exibe os presets padrão.
|
|
25501
|
+
* - `Array<string>`: exibe apenas os presets padrão cujos labels estejam no array informado.
|
|
25502
|
+
*
|
|
25503
|
+
* **Componente compatível:** `po-datepicker-range`
|
|
25504
|
+
*
|
|
25505
|
+
* @default `false`
|
|
25506
|
+
*/
|
|
25507
|
+
rangePresets?: boolean | Array<string>;
|
|
25508
|
+
/**
|
|
25509
|
+
* Lista de presets customizados de intervalos de data exibidos no painel lateral do calendário.
|
|
25510
|
+
*
|
|
25511
|
+
* Para utilizar presets customizados, informe um array de objetos que implementam a interface `PoCalendarRangePreset`.
|
|
25512
|
+
*
|
|
25513
|
+
* **Componente compatível:** `po-datepicker-range`
|
|
25514
|
+
*/
|
|
25515
|
+
rangePresetOptions?: Array<PoCalendarRangePreset>;
|
|
25516
|
+
/**
|
|
25517
|
+
* Define a ordenação dos presets na lista.
|
|
25518
|
+
*
|
|
25519
|
+
* Valores aceitos:
|
|
25520
|
+
* - `'asc'`: ordenação crescente (passado → futuro)
|
|
25521
|
+
* - `'desc'`: ordenação decrescente (futuro → passado)
|
|
25522
|
+
*
|
|
25523
|
+
* **Componente compatível:** `po-datepicker-range`
|
|
25524
|
+
*
|
|
25525
|
+
* @default `'asc'`
|
|
25526
|
+
*/
|
|
25527
|
+
rangePresetsOrder?: 'asc' | 'desc';
|
|
25323
25528
|
}
|
|
25324
25529
|
|
|
25325
25530
|
/**
|
|
@@ -29424,15 +29629,21 @@ declare class PoPageContentBaseComponent {
|
|
|
29424
29629
|
* @docsExtends PoPageContentBaseComponent
|
|
29425
29630
|
*/
|
|
29426
29631
|
declare class PoPageContentComponent extends PoPageContentBaseComponent implements AfterViewInit, OnDestroy {
|
|
29427
|
-
renderer
|
|
29632
|
+
private readonly renderer;
|
|
29633
|
+
private readonly elementRef;
|
|
29634
|
+
private readonly ngZone;
|
|
29428
29635
|
contentOpacity: number;
|
|
29429
29636
|
height: string;
|
|
29430
|
-
overflowY: string;
|
|
29431
29637
|
constructor();
|
|
29432
29638
|
ngAfterViewInit(): void;
|
|
29433
29639
|
ngOnDestroy(): void;
|
|
29640
|
+
/**
|
|
29641
|
+
* Recalcula a altura do po-page-content.
|
|
29642
|
+
* Chamado internamente pelo po-page-default quando inputs que afetam
|
|
29643
|
+
* o tamanho do header mudam (title, subtitle, breadcrumb, headerType, theme).
|
|
29644
|
+
*/
|
|
29434
29645
|
recalculateHeaderSize(): void;
|
|
29435
|
-
setHeightContent
|
|
29646
|
+
private setHeightContent;
|
|
29436
29647
|
private initializeListeners;
|
|
29437
29648
|
private removeListeners;
|
|
29438
29649
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoPageContentComponent, never>;
|
|
@@ -29441,11 +29652,14 @@ declare class PoPageContentComponent extends PoPageContentBaseComponent implemen
|
|
|
29441
29652
|
|
|
29442
29653
|
/**
|
|
29443
29654
|
* @description
|
|
29444
|
-
* Interface para as ações dos componentes po-page-default e po-page-list.
|
|
29445
29655
|
*
|
|
29446
|
-
*
|
|
29447
|
-
*
|
|
29448
|
-
*
|
|
29656
|
+
* Interface para as ações dos componentes `po-page-default` e `po-page-list`.
|
|
29657
|
+
*
|
|
29658
|
+
* As ações podem ser exibidas como botões no cabeçalho ou agrupadas em um *dropdown*,
|
|
29659
|
+
* conforme o `PoPageActionsLayout` e o tamanho da tela.
|
|
29660
|
+
*
|
|
29661
|
+
* > As propriedades `separator`, `selected` e `subItems` possuem efeito apenas quando
|
|
29662
|
+
* a ação é exibida dentro do *dropdown*.
|
|
29449
29663
|
*
|
|
29450
29664
|
* @docsExtends PoDropdownAction
|
|
29451
29665
|
*
|
|
@@ -29454,6 +29668,25 @@ declare class PoPageContentComponent extends PoPageContentBaseComponent implemen
|
|
|
29454
29668
|
* @usedBy PoPageDefaultComponent, PoPageListComponent
|
|
29455
29669
|
*/
|
|
29456
29670
|
interface PoPageAction extends PoDropdownAction {
|
|
29671
|
+
/**
|
|
29672
|
+
* @optional
|
|
29673
|
+
*
|
|
29674
|
+
* @description
|
|
29675
|
+
*
|
|
29676
|
+
* Define o estilo visual da ação quando exibida como botão fora do *dropdown*.
|
|
29677
|
+
*
|
|
29678
|
+
* Valores permitidos:
|
|
29679
|
+
* - `primary`: botão com maior destaque visual.
|
|
29680
|
+
* - `secondary`: estilo padrão.
|
|
29681
|
+
*
|
|
29682
|
+
* > Valores inválidos são ignorados e o componente aplica o estilo padrão da posição.
|
|
29683
|
+
*
|
|
29684
|
+
* > Somente uma ação pode ter `kind` igual a `primary`. Caso mais de uma defina `primary`,
|
|
29685
|
+
* apenas a primeira será mantida e as demais receberão `secondary`.
|
|
29686
|
+
*
|
|
29687
|
+
* > Quando não definido, o estilo é determinado pelo `PoPageActionsLayout`.
|
|
29688
|
+
*/
|
|
29689
|
+
kind?: string;
|
|
29457
29690
|
}
|
|
29458
29691
|
|
|
29459
29692
|
/**
|
|
@@ -29498,6 +29731,59 @@ interface PoBreadcrumb {
|
|
|
29498
29731
|
params?: object;
|
|
29499
29732
|
}
|
|
29500
29733
|
|
|
29734
|
+
/**
|
|
29735
|
+
* @usedBy PoPageDefaultComponent
|
|
29736
|
+
*
|
|
29737
|
+
* @description
|
|
29738
|
+
*
|
|
29739
|
+
* Define os layouts de exibição das ações no cabeçalho do `po-page-default`.
|
|
29740
|
+
*
|
|
29741
|
+
* > Compatível com todos os valores de `PoPageHeaderType`.
|
|
29742
|
+
*/
|
|
29743
|
+
declare enum PoPageActionsLayout {
|
|
29744
|
+
/**
|
|
29745
|
+
* Exibe as ações como botões (até 3 em desktop e 2 em mobile), agrupando as demais no *dropdown*.
|
|
29746
|
+
*
|
|
29747
|
+
* Quando `PoPageAction.kind` não é definido, a primeira ação recebe o estilo `primary`
|
|
29748
|
+
* e as demais recebem `secondary`.
|
|
29749
|
+
*/
|
|
29750
|
+
default = "default",
|
|
29751
|
+
/**
|
|
29752
|
+
* Agrupa todas as ações exclusivamente dentro do menu *dropdown*.
|
|
29753
|
+
*/
|
|
29754
|
+
dropdown = "dropdown",
|
|
29755
|
+
/**
|
|
29756
|
+
* Exibe a primeira ação como botão e agrupa as demais no *dropdown*.
|
|
29757
|
+
*/
|
|
29758
|
+
mixed = "mixed"
|
|
29759
|
+
}
|
|
29760
|
+
|
|
29761
|
+
/**
|
|
29762
|
+
* @usedBy PoPageDefaultComponent
|
|
29763
|
+
*
|
|
29764
|
+
* @description
|
|
29765
|
+
*
|
|
29766
|
+
* Define os tipos de cabeçalho disponíveis no `po-page-default`.
|
|
29767
|
+
*/
|
|
29768
|
+
declare enum PoPageHeaderType {
|
|
29769
|
+
/**
|
|
29770
|
+
* Layout padrão com suporte a `p-breadcrumb`.
|
|
29771
|
+
*/
|
|
29772
|
+
primary = "primary",
|
|
29773
|
+
/**
|
|
29774
|
+
* Exibe um botão de retorno ao lado do título.
|
|
29775
|
+
*
|
|
29776
|
+
* > Incompatível com `p-breadcrumb`.
|
|
29777
|
+
*/
|
|
29778
|
+
secondary = "secondary",
|
|
29779
|
+
/**
|
|
29780
|
+
* Layout simplificado sem botão de retorno.
|
|
29781
|
+
*
|
|
29782
|
+
* > Incompatível com `p-breadcrumb`.
|
|
29783
|
+
*/
|
|
29784
|
+
tertiary = "tertiary"
|
|
29785
|
+
}
|
|
29786
|
+
|
|
29501
29787
|
/**
|
|
29502
29788
|
* @usedBy PoPageDefaultComponent
|
|
29503
29789
|
*
|
|
@@ -29513,42 +29799,69 @@ interface PoPageDefaultLiterals {
|
|
|
29513
29799
|
/**
|
|
29514
29800
|
* @description
|
|
29515
29801
|
*
|
|
29516
|
-
* O
|
|
29802
|
+
* O `po-page-default` é utilizado como container principal para telas sem um template definido.
|
|
29803
|
+
*
|
|
29804
|
+
* Oferece suporte a cabeçalhos dinâmicos via `p-page-header-type`, navegação por *breadcrumb*
|
|
29805
|
+
* e gerenciamento de ações com agrupamento responsivo via `p-page-actions-layout`.
|
|
29517
29806
|
*
|
|
29518
29807
|
* #### Tokens customizáveis
|
|
29519
29808
|
*
|
|
29520
29809
|
* > Para maiores informações, acesse o guia [Personalizando o Tema Padrão com Tokens CSS](https://po-ui.io/guides/theme-customization).
|
|
29521
29810
|
*
|
|
29522
|
-
* | Propriedade
|
|
29523
|
-
*
|
|
29524
|
-
* | **
|
|
29525
|
-
* | `--
|
|
29526
|
-
* |
|
|
29527
|
-
* | `--
|
|
29528
|
-
* | `--
|
|
29529
|
-
* |
|
|
29530
|
-
* |
|
|
29811
|
+
* | Propriedade | Descrição | Valor Padrão |
|
|
29812
|
+
* |----------------------------------------------------|---------------------------------------------|---------------------------------------|
|
|
29813
|
+
* | **Página (po-page-default)** | | |
|
|
29814
|
+
* | `--background` | Background da página (header e body) | `var(--color-page-background-color-page)` |
|
|
29815
|
+
* | **Header (po-page-header)** | | |
|
|
29816
|
+
* | `--padding` | Espaçamento do header | `var(--spacing-xs) var(--spacing-md)` |
|
|
29817
|
+
* | `--gap` | Espaçamento entre os breadcrumbs e o título | `var(--spacing-md)` |
|
|
29818
|
+
* | `--gap-actions` | Espaçamento entre as ações | `var(--spacing-xs)` |
|
|
29819
|
+
* | **Header (po-page-header .po-page-header-title)** | | |
|
|
29820
|
+
* | `--font-family` | Família tipográfica do título | `var(--font-family-theme)` |
|
|
29821
|
+
* | **Content (po-page-content)** | | |
|
|
29822
|
+
* | `--padding-content` | Espaçamento do conteúdo | `var(--spacing-xs) var(--spacing-sm)` |
|
|
29531
29823
|
*/
|
|
29532
29824
|
declare abstract class PoPageDefaultBaseComponent {
|
|
29533
29825
|
poPageContent: PoPageContentComponent;
|
|
29534
|
-
/** Objeto com propriedades do breadcrumb. */
|
|
29535
|
-
breadcrumb?: PoBreadcrumb;
|
|
29536
29826
|
visibleActions: Array<PoPageAction>;
|
|
29537
29827
|
protected language: string;
|
|
29538
29828
|
private _actions?;
|
|
29829
|
+
private _breadcrumb?;
|
|
29539
29830
|
private _componentsSize?;
|
|
29540
29831
|
private _initialComponentsSize?;
|
|
29541
29832
|
private _literals;
|
|
29833
|
+
private _pageActionsLayout;
|
|
29834
|
+
private _pageHeaderType;
|
|
29835
|
+
private _subtitle;
|
|
29542
29836
|
private _title;
|
|
29543
29837
|
/**
|
|
29544
29838
|
* @optional
|
|
29545
29839
|
*
|
|
29546
29840
|
* @description
|
|
29547
29841
|
*
|
|
29548
|
-
*
|
|
29842
|
+
* Define a lista de ações que serão exibidas no cabeçalho da página.
|
|
29843
|
+
*
|
|
29844
|
+
* Recebe um array de objetos que implementam a interface `PoPageAction`.
|
|
29845
|
+
*
|
|
29846
|
+
* > O comportamento de exibição pode ser customizado através da propriedade `p-page-actions-layout`.
|
|
29847
|
+
*
|
|
29848
|
+
* @default `[]`
|
|
29549
29849
|
*/
|
|
29550
29850
|
set actions(actions: Array<PoPageAction>);
|
|
29551
29851
|
get actions(): Array<PoPageAction>;
|
|
29852
|
+
/**
|
|
29853
|
+
* @optional
|
|
29854
|
+
*
|
|
29855
|
+
* @description
|
|
29856
|
+
*
|
|
29857
|
+
* Define o sistema de navegação que indica o caminho da página atual na hierarquia da aplicação.
|
|
29858
|
+
*
|
|
29859
|
+
* Recebe um objeto que implementa a interface `PoBreadcrumb`.
|
|
29860
|
+
*
|
|
29861
|
+
* > Compatível com o cabeçalho (`p-page-header-type`) do tipo `primary`.
|
|
29862
|
+
*/
|
|
29863
|
+
set breadcrumb(value: PoBreadcrumb);
|
|
29864
|
+
get breadcrumb(): PoBreadcrumb;
|
|
29552
29865
|
/**
|
|
29553
29866
|
* @optional
|
|
29554
29867
|
*
|
|
@@ -29570,37 +29883,62 @@ declare abstract class PoPageDefaultBaseComponent {
|
|
|
29570
29883
|
*
|
|
29571
29884
|
* @description
|
|
29572
29885
|
*
|
|
29573
|
-
*
|
|
29574
|
-
*
|
|
29575
|
-
* Existem duas maneiras de customizar o componente, passando um objeto com todas as literais disponíveis:
|
|
29886
|
+
* Permite a customização das literais utilizadas no componente.
|
|
29576
29887
|
*
|
|
29577
|
-
*
|
|
29578
|
-
* const customLiterals: PoPageDefaultLiterals = {
|
|
29579
|
-
* otherActions: 'Mais ações'
|
|
29580
|
-
* };
|
|
29581
|
-
* ```
|
|
29888
|
+
* Para customizar, basta passar um objeto parcial ou completo que implemente a interface `PoPageDefaultLiterals`.
|
|
29582
29889
|
*
|
|
29583
|
-
*
|
|
29890
|
+
* Exemplo de uso:
|
|
29584
29891
|
*
|
|
29892
|
+
* ```html
|
|
29893
|
+
* <po-page-default [p-literals]="customLiterals"></po-page-default>
|
|
29585
29894
|
* ```
|
|
29586
|
-
* const customLiterals: PoPageDefaultLiterals = {
|
|
29587
|
-
* otherActions: 'Ações da página'
|
|
29588
|
-
* };
|
|
29589
|
-
* ```
|
|
29590
|
-
*
|
|
29591
|
-
* E para carregar as literais customizadas, basta apenas passar o objeto para o componente.
|
|
29592
29895
|
*
|
|
29593
|
-
* ```
|
|
29594
|
-
*
|
|
29595
|
-
*
|
|
29596
|
-
*
|
|
29896
|
+
* ```typescript
|
|
29897
|
+
* const customLiterals: PoPageDefaultLiterals = {
|
|
29898
|
+
* otherActions: 'Mais opções'
|
|
29899
|
+
* };
|
|
29597
29900
|
* ```
|
|
29598
29901
|
*
|
|
29599
|
-
* > O valor padrão será traduzido de acordo com o idioma configurado no [`PoI18nService`](/documentation/po-i18n) ou
|
|
29902
|
+
* > O valor padrão será traduzido de acordo com o idioma configurado no [`PoI18nService`](/documentation/po-i18n) ou navegador.
|
|
29600
29903
|
*/
|
|
29601
29904
|
set literals(value: PoPageDefaultLiterals);
|
|
29602
29905
|
get literals(): PoPageDefaultLiterals;
|
|
29603
|
-
/**
|
|
29906
|
+
/**
|
|
29907
|
+
* @optional
|
|
29908
|
+
*
|
|
29909
|
+
* @description
|
|
29910
|
+
*
|
|
29911
|
+
* Define o layout de exibição das ações no cabeçalho.
|
|
29912
|
+
*
|
|
29913
|
+
* Aceita valores do enum `PoPageActionsLayout`.
|
|
29914
|
+
*
|
|
29915
|
+
* > Em telas reduzidas (< 480px) as ações fora do *dropdown* que possuam a propriedade `PoPageAction.icon` definida
|
|
29916
|
+
* exibirão apenas o ícone.
|
|
29917
|
+
*
|
|
29918
|
+
* @default `default`
|
|
29919
|
+
*/
|
|
29920
|
+
set pageActionsLayout(value: string | PoPageActionsLayout);
|
|
29921
|
+
get pageActionsLayout(): string;
|
|
29922
|
+
/**
|
|
29923
|
+
* @optional
|
|
29924
|
+
*
|
|
29925
|
+
* @description
|
|
29926
|
+
*
|
|
29927
|
+
* Define o tipo de cabeçalho da página.
|
|
29928
|
+
*
|
|
29929
|
+
* Aceita valores do enum `PoPageHeaderType`.
|
|
29930
|
+
*
|
|
29931
|
+
* @default `primary`
|
|
29932
|
+
*/
|
|
29933
|
+
set pageHeaderType(value: string | PoPageHeaderType);
|
|
29934
|
+
get pageHeaderType(): string;
|
|
29935
|
+
/**
|
|
29936
|
+
* @optional
|
|
29937
|
+
*
|
|
29938
|
+
* @description
|
|
29939
|
+
*
|
|
29940
|
+
* Define o título principal da página.
|
|
29941
|
+
*/
|
|
29604
29942
|
set title(title: string);
|
|
29605
29943
|
get title(): string;
|
|
29606
29944
|
/**
|
|
@@ -29608,16 +29946,29 @@ declare abstract class PoPageDefaultBaseComponent {
|
|
|
29608
29946
|
*
|
|
29609
29947
|
* @description
|
|
29610
29948
|
*
|
|
29611
|
-
*
|
|
29949
|
+
* Define um texto de apoio ou informações adicionais logo abaixo do título principal.
|
|
29950
|
+
*
|
|
29951
|
+
* > Requer que`p-title` esteja definido.
|
|
29612
29952
|
*/
|
|
29613
|
-
subtitle: string;
|
|
29953
|
+
set subtitle(value: string);
|
|
29954
|
+
get subtitle(): string;
|
|
29955
|
+
/**
|
|
29956
|
+
* @optional
|
|
29957
|
+
*
|
|
29958
|
+
* @description
|
|
29959
|
+
*
|
|
29960
|
+
* Evento disparado ao clicar no botão voltar exibido no cabeçalho.
|
|
29961
|
+
*
|
|
29962
|
+
* > Botão exibido apenas quando a propriedade `p-page-header-type` está configurada como `secondary`.
|
|
29963
|
+
*/
|
|
29964
|
+
back: i0.OutputEmitterRef<void>;
|
|
29614
29965
|
constructor(languageService: PoLanguageService);
|
|
29615
29966
|
protected onThemeChange(): void;
|
|
29616
29967
|
private applySizeBasedOnA11y;
|
|
29617
29968
|
abstract setDropdownActions(): any;
|
|
29618
29969
|
abstract getVisibleActions(): any;
|
|
29619
29970
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoPageDefaultBaseComponent, never>;
|
|
29620
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PoPageDefaultBaseComponent, never, never, { "
|
|
29971
|
+
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>;
|
|
29621
29972
|
}
|
|
29622
29973
|
|
|
29623
29974
|
/**
|
|
@@ -29642,24 +29993,30 @@ declare abstract class PoPageDefaultBaseComponent {
|
|
|
29642
29993
|
* <file name="sample-po-page-default-dashboard/sample-po-page-default-dashboard.service.ts"> </file>
|
|
29643
29994
|
* </example>
|
|
29644
29995
|
*/
|
|
29645
|
-
declare class PoPageDefaultComponent extends PoPageDefaultBaseComponent implements AfterContentInit, OnChanges {
|
|
29996
|
+
declare class PoPageDefaultComponent extends PoPageDefaultBaseComponent implements AfterContentInit, OnChanges, OnDestroy {
|
|
29646
29997
|
private readonly renderer;
|
|
29647
29998
|
private readonly router;
|
|
29999
|
+
readonly backIcon: string;
|
|
30000
|
+
readonly backNavigationLabel: string;
|
|
29648
30001
|
limitPrimaryActions: number;
|
|
29649
30002
|
dropdownActions: Array<PoPageAction>;
|
|
29650
30003
|
isMobile: boolean;
|
|
29651
30004
|
private readonly maxWidthMobile;
|
|
30005
|
+
private _primaryKindUsed;
|
|
30006
|
+
private resizeUnlisten;
|
|
29652
30007
|
constructor();
|
|
29653
30008
|
ngAfterContentInit(): void;
|
|
29654
30009
|
ngOnChanges(changes: {
|
|
29655
30010
|
[propName: string]: SimpleChange;
|
|
29656
30011
|
}): void;
|
|
30012
|
+
ngOnDestroy(): void;
|
|
29657
30013
|
actionIsDisabled(action: any): any;
|
|
29658
30014
|
actionIsVisible(action: any): any;
|
|
29659
30015
|
callAction(item: PoPageAction): void;
|
|
29660
30016
|
hasPageHeader(): boolean;
|
|
29661
30017
|
setDropdownActions(): void;
|
|
29662
30018
|
getVisibleActions(): PoPageAction[];
|
|
30019
|
+
getActionKind(action: PoPageAction, fallback: string): string;
|
|
29663
30020
|
private onResize;
|
|
29664
30021
|
private setIsMobile;
|
|
29665
30022
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoPageDefaultComponent, never>;
|
|
@@ -30048,12 +30405,14 @@ declare class PoPageHeaderBaseComponent {
|
|
|
30048
30405
|
size: string;
|
|
30049
30406
|
/** Subtítulo da página. */
|
|
30050
30407
|
subtitle: string;
|
|
30408
|
+
/** Define o tipo de header: `primary`, `secondary` ou `tertiary`. */
|
|
30409
|
+
type: string;
|
|
30051
30410
|
private _breadcrumb;
|
|
30052
30411
|
/** Objeto com propriedades do breadcrumb. */
|
|
30053
30412
|
set breadcrumb(value: PoBreadcrumb);
|
|
30054
30413
|
get breadcrumb(): PoBreadcrumb;
|
|
30055
30414
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoPageHeaderBaseComponent, never>;
|
|
30056
|
-
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>;
|
|
30415
|
+
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>;
|
|
30057
30416
|
}
|
|
30058
30417
|
|
|
30059
30418
|
/**
|
|
@@ -30062,7 +30421,7 @@ declare class PoPageHeaderBaseComponent {
|
|
|
30062
30421
|
*/
|
|
30063
30422
|
declare class PoPageHeaderComponent extends PoPageHeaderBaseComponent {
|
|
30064
30423
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoPageHeaderComponent, never>;
|
|
30065
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PoPageHeaderComponent, "po-page-header", never, {}, {}, never, ["*"], false, never>;
|
|
30424
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PoPageHeaderComponent, "po-page-header", never, {}, {}, never, ["[po-page-header-navigation]", "*"], false, never>;
|
|
30066
30425
|
}
|
|
30067
30426
|
|
|
30068
30427
|
/**
|
|
@@ -31236,8 +31595,9 @@ declare class PoPageListComponent extends PoPageListBaseComponent implements Aft
|
|
|
31236
31595
|
|
|
31237
31596
|
/**
|
|
31238
31597
|
* @description
|
|
31239
|
-
*
|
|
31240
|
-
* po-page-
|
|
31598
|
+
*
|
|
31599
|
+
* Módulo responsável pelos componentes de estrutura de página: `po-page-default`, `po-page-detail`,
|
|
31600
|
+
* `po-page-edit`, `po-page-list` e `po-page-slide`.
|
|
31241
31601
|
*/
|
|
31242
31602
|
declare class PoPageModule {
|
|
31243
31603
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoPageModule, never>;
|
|
@@ -34357,7 +34717,7 @@ declare const poThemeDefaultDarkValues: {
|
|
|
34357
34717
|
'po-container': {
|
|
34358
34718
|
'--background': string;
|
|
34359
34719
|
};
|
|
34360
|
-
'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': {
|
|
34720
|
+
'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': {
|
|
34361
34721
|
'--background-disabled': string;
|
|
34362
34722
|
};
|
|
34363
34723
|
'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': {
|
|
@@ -34463,7 +34823,7 @@ declare const poThemeDefaultDarkValuesAA: {
|
|
|
34463
34823
|
'po-container': {
|
|
34464
34824
|
'--background': string;
|
|
34465
34825
|
};
|
|
34466
|
-
'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': {
|
|
34826
|
+
'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': {
|
|
34467
34827
|
'--background-disabled': string;
|
|
34468
34828
|
};
|
|
34469
34829
|
'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': {
|
|
@@ -36830,5 +37190,5 @@ declare class PoHttpRequestInterceptorService implements HttpInterceptor {
|
|
|
36830
37190
|
static ɵprov: i0.ɵɵInjectableDeclaration<PoHttpRequestInterceptorService>;
|
|
36831
37191
|
}
|
|
36832
37192
|
|
|
36833
|
-
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, 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 };
|
|
37193
|
+
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 };
|
|
36834
37194
|
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 };
|