@po-ui/ng-components 21.28.0 → 21.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/{po-ui-ng-components-po-chart-modal-table.component-CIfW0N91.mjs → po-ui-ng-components-po-chart-modal-table.component-BEh4YifL.mjs} +4 -4
- package/fesm2022/{po-ui-ng-components-po-chart-modal-table.component-CIfW0N91.mjs.map → po-ui-ng-components-po-chart-modal-table.component-BEh4YifL.mjs.map} +1 -1
- package/fesm2022/po-ui-ng-components.mjs +1683 -1266
- package/fesm2022/po-ui-ng-components.mjs.map +1 -1
- package/lib/components/po-dynamic/po-dynamic-form/interfaces/po-dynamic-form-field.interface.d.ts +28 -0
- package/lib/components/po-field/index.d.ts +3 -0
- package/lib/components/po-field/po-decimal/interfaces/po-decimal-format-parsed.interface.d.ts +16 -0
- package/lib/components/po-field/po-decimal/interfaces/po-decimal-format-result.interface.d.ts +12 -0
- package/lib/components/po-field/po-decimal/po-decimal.component.d.ts +42 -1
- package/lib/components/po-field/po-decimal/utils/po-decimal-format.util.d.ts +47 -0
- package/lib/pipes/index.d.ts +1 -0
- package/lib/pipes/po-decimal/index.d.ts +2 -0
- package/lib/pipes/po-decimal/po-decimal.module.d.ts +2 -0
- package/lib/pipes/po-decimal/po-decimal.pipe.d.ts +15 -0
- package/package.json +4 -4
- package/po-ui-ng-components-21.29.0.tgz +0 -0
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-update/v14/index.js +1 -1
- package/schematics/ng-update/v15/index.js +1 -1
- package/schematics/ng-update/v16/index.js +1 -1
- package/schematics/ng-update/v17/index.js +1 -1
- package/schematics/ng-update/v18/index.js +2 -2
- package/schematics/ng-update/v19/index.js +2 -2
- package/schematics/ng-update/v2/index.js +1 -1
- package/schematics/ng-update/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 +171 -4
- package/po-ui-ng-components-21.28.0.tgz +0 -0
|
@@ -22564,6 +22564,11 @@ declare class PoDatetimepickerModule {
|
|
|
22564
22564
|
* <file name="sample-po-decimal-hourly-wage-reactive-form/sample-po-decimal-hourly-wage-reactive-form.component.html"> </file>
|
|
22565
22565
|
* <file name="sample-po-decimal-hourly-wage-reactive-form/sample-po-decimal-hourly-wage-reactive-form.component.ts"> </file>
|
|
22566
22566
|
* </example>
|
|
22567
|
+
*
|
|
22568
|
+
* <example name="po-decimal-display-format" title="PO Decimal - Display Format">
|
|
22569
|
+
* <file name="sample-po-decimal-display-format/sample-po-decimal-display-format.component.html"> </file>
|
|
22570
|
+
* <file name="sample-po-decimal-display-format/sample-po-decimal-display-format.component.ts"> </file>
|
|
22571
|
+
* </example>
|
|
22567
22572
|
*/
|
|
22568
22573
|
declare class PoDecimalComponent extends PoInputBaseComponent implements AfterViewInit, OnInit, OnDestroy, OnChanges {
|
|
22569
22574
|
private readonly el;
|
|
@@ -22597,6 +22602,7 @@ declare class PoDecimalComponent extends PoInputBaseComponent implements AfterVi
|
|
|
22597
22602
|
* - A soma total de `p-decimals-length` com `p-thousand-maxlength` limita-se à 16;
|
|
22598
22603
|
* - Esta propriedade sobrepõe apenas o valor **padrão** de `p-thousand-maxlength`;
|
|
22599
22604
|
* - Caso `p-thousand-maxlength` tenha um valor definido, esta propriedade poderá receber apenas o valor restante do limite total (16).
|
|
22605
|
+
* - Quando utilizado com `p-display-format`, será respeitado o valor **mais restritivo** entre esta propriedade e o número de casas decimais definido no formato.
|
|
22600
22606
|
*
|
|
22601
22607
|
* @default `2`
|
|
22602
22608
|
*/
|
|
@@ -22613,6 +22619,8 @@ declare class PoDecimalComponent extends PoInputBaseComponent implements AfterVi
|
|
|
22613
22619
|
* - O valor máximo permitido é 13;
|
|
22614
22620
|
* - A soma total de `p-decimals-length` com `p-thousand-maxlength` limita-se à 16;
|
|
22615
22621
|
* - Esta propriedade sobrepõe o valor definido em `p-decimals-length`.
|
|
22622
|
+
* - Quando utilizado com `p-display-format`, será respeitado o valor **mais restritivo** entre esta propriedade e o número de dígitos inteiros definido no
|
|
22623
|
+
* formato.
|
|
22616
22624
|
*
|
|
22617
22625
|
* @default `13`
|
|
22618
22626
|
*/
|
|
@@ -22630,6 +22638,31 @@ declare class PoDecimalComponent extends PoInputBaseComponent implements AfterVi
|
|
|
22630
22638
|
*
|
|
22631
22639
|
*/
|
|
22632
22640
|
set locale(locale: string);
|
|
22641
|
+
/**
|
|
22642
|
+
* @optional
|
|
22643
|
+
*
|
|
22644
|
+
* @description
|
|
22645
|
+
*
|
|
22646
|
+
* Define uma máscara de formatação numérica avançada para o campo.
|
|
22647
|
+
*
|
|
22648
|
+
* Simbologia suportada:
|
|
22649
|
+
* - `9`: Dígito obrigatório (preenche com zero à esquerda no blur);
|
|
22650
|
+
* - `>`: Supressão de zero à esquerda (dígito não obrigatório);
|
|
22651
|
+
* - `<`: Decimal flutuante, supressão de zeros à direita (dígito não obrigatório);
|
|
22652
|
+
* - `,` e `.`: Separadores de milhar/grupo e decimal (convertidos conforme `p-locale`);
|
|
22653
|
+
* - `-`: Sinal negativo (deve ser o primeiro caractere do formato).
|
|
22654
|
+
*
|
|
22655
|
+
* > **Importante:**
|
|
22656
|
+
* - A formatação via `p-display-format` é apenas visual; o valor do model é sempre o número puro.
|
|
22657
|
+
* - Quando o valor pré-preenchido não atende ao formato (overflow ou negativo sem `-`), o campo exibe com a formatação padrão do `po-decimal` (separadores de milhar + `p-decimals-length` casas decimais).
|
|
22658
|
+
* - Quando `p-decimals-length` ou `p-thousand-maxlength` são definidos, será respeitado o valor **mais restritivo** entre o formato e a propriedade.
|
|
22659
|
+
* - Incompatível com `p-mask`, `p-mask-format-model`, `p-mask-no-length-validation` e `p-pattern`.
|
|
22660
|
+
*
|
|
22661
|
+
* Exemplos de formato: `>>>,>>>,>>9.99`, `->>,>>9.99`, `999.9`, `>>>,>>9.9<<<<<<`
|
|
22662
|
+
*
|
|
22663
|
+
*/
|
|
22664
|
+
readonly displayFormat: i0.InputSignal<string>;
|
|
22665
|
+
private readonly formatParsed;
|
|
22633
22666
|
/**
|
|
22634
22667
|
* @optional
|
|
22635
22668
|
*
|
|
@@ -22677,6 +22710,14 @@ declare class PoDecimalComponent extends PoInputBaseComponent implements AfterVi
|
|
|
22677
22710
|
hideAdditionalHelp: boolean;
|
|
22678
22711
|
helperSettings?: any;
|
|
22679
22712
|
};
|
|
22713
|
+
private applyFormatOnBlur;
|
|
22714
|
+
private resolveViewValue;
|
|
22715
|
+
private applyFormatOnBlurAndSetView;
|
|
22716
|
+
private formatMaskWithAblPositions;
|
|
22717
|
+
private validateFormatOnInput;
|
|
22718
|
+
private getEffectiveFormatParsed;
|
|
22719
|
+
private getModelValueFromView;
|
|
22720
|
+
private refreshOnPropertyChange;
|
|
22680
22721
|
private containsComma;
|
|
22681
22722
|
private containsMoreThanOneDecimalSeparator;
|
|
22682
22723
|
private controlChangeEmitter;
|
|
@@ -22711,9 +22752,84 @@ declare class PoDecimalComponent extends PoInputBaseComponent implements AfterVi
|
|
|
22711
22752
|
private verifyInsertMinusSign;
|
|
22712
22753
|
private verifyValueAfterComma;
|
|
22713
22754
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoDecimalComponent, never>;
|
|
22714
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PoDecimalComponent, "po-decimal", never, { "decimalsLength": { "alias": "p-decimals-length"; "required": false; }; "thousandMaxlength": { "alias": "p-thousand-maxlength"; "required": false; }; "locale": { "alias": "p-locale"; "required": false; }; "min": { "alias": "p-min"; "required": false; }; "max": { "alias": "p-max"; "required": false; }; }, {}, never, never, false, never>;
|
|
22755
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PoDecimalComponent, "po-decimal", never, { "decimalsLength": { "alias": "p-decimals-length"; "required": false; }; "thousandMaxlength": { "alias": "p-thousand-maxlength"; "required": false; }; "locale": { "alias": "p-locale"; "required": false; }; "displayFormat": { "alias": "p-display-format"; "required": false; "isSignal": true; }; "min": { "alias": "p-min"; "required": false; }; "max": { "alias": "p-max"; "required": false; }; }, {}, never, never, false, never>;
|
|
22756
|
+
}
|
|
22757
|
+
|
|
22758
|
+
/**
|
|
22759
|
+
* @docsPrivate
|
|
22760
|
+
*
|
|
22761
|
+
* @description
|
|
22762
|
+
*
|
|
22763
|
+
* Resultado do parsing de uma string de formato numérico.
|
|
22764
|
+
*/
|
|
22765
|
+
interface PoDecimalFormatParsed {
|
|
22766
|
+
integerFormat: Array<string>;
|
|
22767
|
+
decimalFormat: Array<string>;
|
|
22768
|
+
groupSeparatorPositions: Array<number>;
|
|
22769
|
+
allowNegative: boolean;
|
|
22770
|
+
integerDigitCount: number;
|
|
22771
|
+
decimalDigitCount: number;
|
|
22772
|
+
originalFormat: string;
|
|
22773
|
+
}
|
|
22774
|
+
|
|
22775
|
+
/**
|
|
22776
|
+
* @docsPrivate
|
|
22777
|
+
*
|
|
22778
|
+
* @description
|
|
22779
|
+
*
|
|
22780
|
+
* Resultado da aplicação do formato numérico a um valor.
|
|
22781
|
+
*/
|
|
22782
|
+
interface PoDecimalFormatResult {
|
|
22783
|
+
viewValue: string;
|
|
22784
|
+
modelValue: number | undefined;
|
|
22785
|
+
isValid: boolean;
|
|
22715
22786
|
}
|
|
22716
22787
|
|
|
22788
|
+
/**
|
|
22789
|
+
* Formatação numérica avançada para o po-decimal.
|
|
22790
|
+
*
|
|
22791
|
+
* Simbologia suportada:
|
|
22792
|
+
* 9 - Dígito obrigatório (preenche com zero)
|
|
22793
|
+
* > - Supressão de zero à esquerda
|
|
22794
|
+
* < - Supressão de zeros à direita (decimal flutuante)
|
|
22795
|
+
* , - Separador de grupo (convertido conforme locale)
|
|
22796
|
+
* . - Separador decimal (convertido conforme locale)
|
|
22797
|
+
* - - Sinal negativo (primeiro caractere)
|
|
22798
|
+
*/
|
|
22799
|
+
|
|
22800
|
+
/**
|
|
22801
|
+
* Aplica o formato ao valor numérico, gerando a representação visual.
|
|
22802
|
+
*
|
|
22803
|
+
* @returns viewValue formatado + flag de validação (overflow = isValid false)
|
|
22804
|
+
*/
|
|
22805
|
+
declare function applyDecimalFormat(value: number | undefined | null, parsed: PoDecimalFormatParsed, decimalSeparator: string, thousandSeparator: string): PoDecimalFormatResult;
|
|
22806
|
+
/**
|
|
22807
|
+
* Deriva os limites de dígitos do formato para compatibilidade com p-decimals-length / p-thousand-maxlength.
|
|
22808
|
+
*/
|
|
22809
|
+
declare function getFormatLimits(parsed: PoDecimalFormatParsed): {
|
|
22810
|
+
decimalsLength: number;
|
|
22811
|
+
thousandMaxlength: number;
|
|
22812
|
+
} | null;
|
|
22813
|
+
/**
|
|
22814
|
+
* Faz o parsing da string de formato numérico.
|
|
22815
|
+
*
|
|
22816
|
+
* Regra: '.' no formato = separador decimal, ',' = separador de grupo.
|
|
22817
|
+
* Sem '.' = formato puramente inteiro.
|
|
22818
|
+
*/
|
|
22819
|
+
declare function parseDecimalFormat(format: string): PoDecimalFormatParsed;
|
|
22820
|
+
/**
|
|
22821
|
+
* Valida se o valor digitado cabe no formato (usado durante input em tempo real).
|
|
22822
|
+
*/
|
|
22823
|
+
declare function validateAgainstFormat(rawValue: string, parsed: PoDecimalFormatParsed, decimalSeparator: string): boolean;
|
|
22824
|
+
/**
|
|
22825
|
+
* Insere separadores de grupo baseando-se nas posições do formato original,
|
|
22826
|
+
* calculando da direita para a esquerda. Funciona tanto com formato truncado
|
|
22827
|
+
* (quando p-thousand-maxlength restringe) quanto em tamanho completo.
|
|
22828
|
+
*
|
|
22829
|
+
* Aceita digits como Array<string> (blur, com placeholders) ou string (digitação).
|
|
22830
|
+
*/
|
|
22831
|
+
declare function insertGroupSeparatorsFromRight(digits: Array<string> | string, parsed: PoDecimalFormatParsed, thousandSeparator: string): string;
|
|
22832
|
+
|
|
22717
22833
|
/**
|
|
22718
22834
|
* @docsExtends PoInputBaseComponent
|
|
22719
22835
|
*
|
|
@@ -29682,6 +29798,8 @@ interface PoDynamicFormField extends PoDynamicField {
|
|
|
29682
29798
|
*
|
|
29683
29799
|
* **Componente compatível:** `po-input`.
|
|
29684
29800
|
* > também é atribuído ao utilizar a propriedade `type: time`.
|
|
29801
|
+
*
|
|
29802
|
+
* > Incompatível com `po-decimal`.
|
|
29685
29803
|
*/
|
|
29686
29804
|
mask?: string;
|
|
29687
29805
|
/**
|
|
@@ -29732,17 +29850,23 @@ interface PoDynamicFormField extends PoDynamicField {
|
|
|
29732
29850
|
/** Quantidade máxima de casas decimais.
|
|
29733
29851
|
*
|
|
29734
29852
|
* > Esta propriedade só pode ser utilizada quando o `type` for *currency* ou *decimal*.
|
|
29853
|
+
*
|
|
29854
|
+
* > Quando utilizado com `displayFormat`, será respeitado o valor **mais restritivo** entre esta propriedade e o número de casas decimais definido no formato.
|
|
29735
29855
|
*/
|
|
29736
29856
|
decimalsLength?: number;
|
|
29737
29857
|
/** Quantidade máxima de dígitos antes do separador decimal. O valor máximo permitido é 13
|
|
29738
29858
|
*
|
|
29739
29859
|
* > Esta propriedade só pode ser utilizada quando o `type` for *currency* ou *decimal*.
|
|
29860
|
+
*
|
|
29861
|
+
* > Quando utilizado com `displayFormat`, será respeitado o valor **mais restritivo** entre esta propriedade e o número de dígitos inteiros definido no formato.
|
|
29740
29862
|
*/
|
|
29741
29863
|
thousandMaxlength?: number;
|
|
29742
29864
|
/**
|
|
29743
29865
|
* Regex para validação do campo.
|
|
29744
29866
|
*
|
|
29745
29867
|
* **Componentes compatíveis:** `po-input`, `po-password`.
|
|
29868
|
+
*
|
|
29869
|
+
* > Incompatível com `po-decimal`.
|
|
29746
29870
|
* */
|
|
29747
29871
|
pattern?: string;
|
|
29748
29872
|
/**
|
|
@@ -29944,6 +30068,26 @@ interface PoDynamicFormField extends PoDynamicField {
|
|
|
29944
30068
|
* **Componentes compatíveis:** `po-datepicker`, `po-datetimepicker`, `po-timepicker`, `po-lookup`.
|
|
29945
30069
|
*/
|
|
29946
30070
|
format?: string | Array<string>;
|
|
30071
|
+
/**
|
|
30072
|
+
* Define uma máscara de formatação numérica avançada para o campo.
|
|
30073
|
+
*
|
|
30074
|
+
* Simbologia suportada:
|
|
30075
|
+
* - `9`: Dígito obrigatório (preenche com zero à esquerda no blur);
|
|
30076
|
+
* - `>`: Supressão de zero à esquerda (dígito não obrigatório);
|
|
30077
|
+
* - `<`: Decimal flutuante, supressão de zeros à direita (dígito não obrigatório);
|
|
30078
|
+
* - `.`: Separador decimal (convertido conforme locale);
|
|
30079
|
+
* - `,`: Separador de milhar/grupo (convertido conforme locale);
|
|
30080
|
+
* - `-`: Sinal negativo (deve ser o primeiro caractere do formato).
|
|
30081
|
+
*
|
|
30082
|
+
* > Quando utilizado com `decimalsLength` ou `thousandMaxlength`, será respeitado o valor **mais restritivo** entre a propriedade e o formato.
|
|
30083
|
+
*
|
|
30084
|
+
* Exemplos: `'>>>,>>>,>>9.99'`, `'->>9.99'`, `'999.9'`
|
|
30085
|
+
*
|
|
30086
|
+
* > Esta propriedade só pode ser utilizada quando o `type` for *currency* ou *decimal*.
|
|
30087
|
+
*
|
|
30088
|
+
* **Componente compatível:** `po-decimal`.
|
|
30089
|
+
*/
|
|
30090
|
+
displayFormat?: string;
|
|
29947
30091
|
/**
|
|
29948
30092
|
* Nome da propriedade do objeto retornado que será utilizado como descrição do campo.
|
|
29949
30093
|
*
|
|
@@ -39815,9 +39959,32 @@ declare class PoInterceptorsModule {
|
|
|
39815
39959
|
static ɵinj: i0.ɵɵInjectorDeclaration<PoInterceptorsModule>;
|
|
39816
39960
|
}
|
|
39817
39961
|
|
|
39962
|
+
/**
|
|
39963
|
+
* Aplica máscaras de formatação numérica avançada a valores numéricos.
|
|
39964
|
+
*
|
|
39965
|
+
* > Retorna string vazia quando o valor excede a capacidade do formato (overflow).
|
|
39966
|
+
*
|
|
39967
|
+
* @example
|
|
39968
|
+
* ```html
|
|
39969
|
+
* {{ 4567.88 | poDecimalFormat: '>>>,>>>,>>9.99' }}
|
|
39970
|
+
* ```
|
|
39971
|
+
*/
|
|
39972
|
+
declare class PoDecimalFormatPipe implements PipeTransform {
|
|
39973
|
+
private readonly languageService;
|
|
39974
|
+
transform(value: number | string | null | undefined, format: string, locale?: string): string;
|
|
39975
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PoDecimalFormatPipe, never>;
|
|
39976
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PoDecimalFormatPipe, "poDecimalFormat", true>;
|
|
39977
|
+
}
|
|
39978
|
+
|
|
39979
|
+
declare class PoDecimalFormatModule {
|
|
39980
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PoDecimalFormatModule, never>;
|
|
39981
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PoDecimalFormatModule, never, [typeof PoDecimalFormatPipe], [typeof PoDecimalFormatPipe]>;
|
|
39982
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PoDecimalFormatModule>;
|
|
39983
|
+
}
|
|
39984
|
+
|
|
39818
39985
|
declare class PoPipesModule {
|
|
39819
39986
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoPipesModule, never>;
|
|
39820
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PoPipesModule, never, [typeof PoTimeModule], [typeof PoTimeModule]>;
|
|
39987
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PoPipesModule, never, [typeof PoTimeModule, typeof PoDecimalFormatModule], [typeof PoTimeModule, typeof PoDecimalFormatModule]>;
|
|
39821
39988
|
static ɵinj: i0.ɵɵInjectorDeclaration<PoPipesModule>;
|
|
39822
39989
|
}
|
|
39823
39990
|
|
|
@@ -40341,5 +40508,5 @@ declare class PoHttpRequestInterceptorService implements HttpInterceptor {
|
|
|
40341
40508
|
static ɵprov: i0.ɵɵInjectableDeclaration<PoHttpRequestInterceptorService>;
|
|
40342
40509
|
}
|
|
40343
40510
|
|
|
40344
|
-
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, PoDatetimepickerComponent, PoDatetimepickerModule, 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, PoFilterChipBaseComponent, PoFilterChipComponent, PoFilterChipModule, 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, PoSearchAiComponent, PoSearchAiModule, PoSearchAiResponseType, PoSearchAiService, 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, PoUserGuideAlignment, PoUserGuideBaseService, PoUserGuideModule, PoUserGuidePosition, PoUserGuideService, PoWidgetComponent, PoWidgetModule, initializeLanguageDefault, mergePoI18nConfigs, poBreadcrumbLiterals, poChartLiteralsDefault, poDialogAlertLiteralsDefault, poDialogConfirmLiteralsDefault, poLanguageDefault, poLocaleDateSeparatorList, poLocaleDecimalSeparatorList, poLocaleDefault, poLocaleThousandSeparatorList, poLocales, poPageSlideLiteralsDefault, poSearchAiCompileFilter, poSearchAiFilterItems, 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, poUserGuideLiteralsDefault, returnPoI18nService };
|
|
40345
|
-
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, PoFilterChipSelectedChange, 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, PoSearchAiColumn, PoSearchAiColumnInput, PoSearchAiError, PoSearchAiLiterals, PoSearchAiRequest, PoSearchAiResponse, PoSearchAiResult, PoSearchFilterSelect, PoSearchLiterals, PoSearchOption, PoSelectOption, PoSelectOptionGroup, PoSlideItem, PoStepperItem, PoTab, PoTableAction, PoTableBoolean, PoTableColumn, PoTableColumnIcon, PoTableColumnLabel, PoTableColumnSort, PoTableDetail, PoTableDetailColumn, PoTableLiterals, PoTableSearchAiField, PoTableSubtitleColumn, PoTagLiterals, PoTheme, PoThemeActive, PoThemeColor, PoThemeColorAction, PoThemeColorCategorical, PoThemeColorFeedback, PoThemeColorNeutral, PoThemeToken, PoThemeTokens, PoThemeType, PoToaster, PoToolbarAction, PoToolbarProfile, PoTreeViewItem, PoUploadFileRestrictions, PoUploadLiterals, PoUserGuideEndEvent, PoUserGuideLiterals, PoUserGuideOptions, PoUserGuideStartEvent, PoUserGuideStep, PoUserGuideStepChangeEvent, PoWidgetAvatar, PoWidgetLiterals, poThemeColorBrand };
|
|
40511
|
+
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, PoDatetimepickerComponent, PoDatetimepickerModule, PoDecimalComponent, PoDecimalFormatModule, PoDecimalFormatPipe, 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, PoFilterChipBaseComponent, PoFilterChipComponent, PoFilterChipModule, 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, PoSearchAiComponent, PoSearchAiModule, PoSearchAiResponseType, PoSearchAiService, 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, PoUserGuideAlignment, PoUserGuideBaseService, PoUserGuideModule, PoUserGuidePosition, PoUserGuideService, PoWidgetComponent, PoWidgetModule, applyDecimalFormat, getFormatLimits, initializeLanguageDefault, insertGroupSeparatorsFromRight, mergePoI18nConfigs, parseDecimalFormat, poBreadcrumbLiterals, poChartLiteralsDefault, poDialogAlertLiteralsDefault, poDialogConfirmLiteralsDefault, poLanguageDefault, poLocaleDateSeparatorList, poLocaleDecimalSeparatorList, poLocaleDefault, poLocaleThousandSeparatorList, poLocales, poPageSlideLiteralsDefault, poSearchAiCompileFilter, poSearchAiFilterItems, 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, poUserGuideLiteralsDefault, returnPoI18nService, validateAgainstFormat };
|
|
40512
|
+
export type { ErrorAsyncProperties, PoAccordionLiterals, PoBreadcrumb, PoBreadcrumbItem, PoButtonGroupItem, PoCalendarRangePreset, PoChartAxisOptions, PoChartDataLabel, PoChartHeaderOptions, PoChartLiterals, PoChartOptions, PoChartSerie, PoCheckboxGroupOption, PoComboFilter, PoComboLiterals, PoComboOption, PoComboOptionGroup, PoContextMenuItem, PoDateSeparator, PoDatepickerRange, PoDatepickerRangeLiterals, PoDecimalFormatParsed, PoDecimalFormatResult, PoDialogAlertLiterals, PoDialogAlertOptions, PoDialogConfirmLiterals, PoDialogConfirmOptions, PoDialogOptions, PoDisclaimer, PoDisclaimerGroup, PoDisclaimerGroupRemoveAction, PoDropdownAction, PoDynamicFormField, PoDynamicFormFieldChanged, PoDynamicFormFieldValidation, PoDynamicFormLoad, PoDynamicFormValidation, PoDynamicViewField, PoDynamicViewRequest, PoFilterChipSelectedChange, 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, PoSearchAiColumn, PoSearchAiColumnInput, PoSearchAiError, PoSearchAiLiterals, PoSearchAiRequest, PoSearchAiResponse, PoSearchAiResult, PoSearchFilterSelect, PoSearchLiterals, PoSearchOption, PoSelectOption, PoSelectOptionGroup, PoSlideItem, PoStepperItem, PoTab, PoTableAction, PoTableBoolean, PoTableColumn, PoTableColumnIcon, PoTableColumnLabel, PoTableColumnSort, PoTableDetail, PoTableDetailColumn, PoTableLiterals, PoTableSearchAiField, PoTableSubtitleColumn, PoTagLiterals, PoTheme, PoThemeActive, PoThemeColor, PoThemeColorAction, PoThemeColorCategorical, PoThemeColorFeedback, PoThemeColorNeutral, PoThemeToken, PoThemeTokens, PoThemeType, PoToaster, PoToolbarAction, PoToolbarProfile, PoTreeViewItem, PoUploadFileRestrictions, PoUploadLiterals, PoUserGuideEndEvent, PoUserGuideLiterals, PoUserGuideOptions, PoUserGuideStartEvent, PoUserGuideStep, PoUserGuideStepChangeEvent, PoWidgetAvatar, PoWidgetLiterals, poThemeColorBrand };
|
|
Binary file
|