@po-ui/ng-components 19.5.0-beta.1 → 19.5.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.mjs +43 -61
- package/fesm2022/po-ui-ng-components.mjs.map +1 -1
- package/lib/services/po-i18n/index.d.ts +0 -1
- package/lib/services/po-i18n/interfaces/po-i18n-config.interface.d.ts +1 -2
- package/lib/services/po-i18n/po-i18n-base.service.d.ts +0 -19
- package/lib/services/po-i18n/po-i18n-config-injection-token.d.ts +1 -1
- package/lib/services/po-i18n/po-i18n.module.d.ts +2 -1
- package/lib/services/po-i18n/po-i18n.service.d.ts +1 -2
- package/package.json +4 -4
- package/po-ui-ng-components-19.5.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/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/lib/services/po-i18n/interfaces/po-i18n-config-context.interface.d.ts +0 -18
- package/po-ui-ng-components-19.5.0-beta.1.tgz +0 -0
|
@@ -17838,7 +17838,7 @@ class PoDatepickerComponent extends PoDatepickerBaseComponent {
|
|
|
17838
17838
|
};
|
|
17839
17839
|
}
|
|
17840
17840
|
onKeyup($event) {
|
|
17841
|
-
if (this.readonly) {
|
|
17841
|
+
if (this.readonly || $event?.target !== this.inputEl?.nativeElement) {
|
|
17842
17842
|
return;
|
|
17843
17843
|
}
|
|
17844
17844
|
this.objMask.keyup($event);
|
|
@@ -34809,13 +34809,15 @@ class PoLookupModalBaseComponent {
|
|
|
34809
34809
|
}
|
|
34810
34810
|
//Método responsável por criar os disclaimers quando abre o modal.
|
|
34811
34811
|
setDisclaimersItems() {
|
|
34812
|
-
if (this.selectedItems &&
|
|
34813
|
-
this.multiple ? (this.selecteds = [{ value: this.selectedItems }]) : (this.selecteds = [this.selectedItems]);
|
|
34814
|
-
return;
|
|
34815
|
-
}
|
|
34816
|
-
if (this.selecteds.length === 0 && this.selectedItems && this.selectedItems.length) {
|
|
34812
|
+
if (this.selectedItems && Array.isArray(this.selectedItems) && this.selectedItems.length > 0) {
|
|
34817
34813
|
this.selecteds = [...this.selectedItems];
|
|
34818
34814
|
}
|
|
34815
|
+
else if (this.selectedItems && !Array.isArray(this.selectedItems)) {
|
|
34816
|
+
this.selecteds = [this.selectedItems];
|
|
34817
|
+
}
|
|
34818
|
+
else {
|
|
34819
|
+
this.selecteds = [];
|
|
34820
|
+
}
|
|
34819
34821
|
}
|
|
34820
34822
|
applyDisclaimerLabelValue(field, filterValue) {
|
|
34821
34823
|
const values = Array.isArray(filterValue) ? filterValue : [filterValue];
|
|
@@ -35653,27 +35655,48 @@ class PoLookupModalComponent extends PoLookupModalBaseComponent {
|
|
|
35653
35655
|
}
|
|
35654
35656
|
// Seleciona um item na tabela
|
|
35655
35657
|
onSelect(item) {
|
|
35658
|
+
const formattedItem = {
|
|
35659
|
+
value: item[this.fieldValue],
|
|
35660
|
+
label: item[this.fieldLabel],
|
|
35661
|
+
...item
|
|
35662
|
+
};
|
|
35656
35663
|
if (this.multiple) {
|
|
35657
|
-
this.
|
|
35664
|
+
this.selectedItems = this.selectedItems ? [...this.selectedItems, formattedItem] : [formattedItem];
|
|
35658
35665
|
}
|
|
35659
35666
|
else {
|
|
35660
|
-
this.
|
|
35667
|
+
this.selectedItems = [formattedItem];
|
|
35661
35668
|
}
|
|
35669
|
+
this.selecteds = [...this.selectedItems];
|
|
35662
35670
|
}
|
|
35663
35671
|
// Remove a seleção de um item na tabela
|
|
35664
35672
|
onUnselect(unselectedItem) {
|
|
35665
|
-
|
|
35673
|
+
if (this.multiple) {
|
|
35674
|
+
this.selectedItems = this.selectedItems.filter(item => item.value !== unselectedItem[this.fieldValue]);
|
|
35675
|
+
}
|
|
35676
|
+
else {
|
|
35677
|
+
this.selectedItems = [];
|
|
35678
|
+
}
|
|
35679
|
+
this.selecteds = [...this.selectedItems];
|
|
35666
35680
|
}
|
|
35667
35681
|
onUnselectFromDisclaimer(removedDisclaimer) {
|
|
35682
|
+
this.selectedItems = this.selectedItems.filter(item => item.value !== removedDisclaimer.value);
|
|
35683
|
+
if (this.selectedItems.length === 0) {
|
|
35684
|
+
this.selecteds = [];
|
|
35685
|
+
}
|
|
35686
|
+
else {
|
|
35687
|
+
this.selecteds = [...this.selectedItems];
|
|
35688
|
+
}
|
|
35668
35689
|
this.poTable.unselectRowItem(item => item[this.fieldValue] === removedDisclaimer.value);
|
|
35669
35690
|
}
|
|
35670
35691
|
// Seleciona todos os itens visíveis na tabela
|
|
35671
35692
|
onAllSelected(items) {
|
|
35672
|
-
this.
|
|
35693
|
+
this.selectedItems = items.map(item => ({ value: item[this.fieldValue], label: item[this.fieldLabel], ...item }));
|
|
35694
|
+
this.selecteds = [...this.selectedItems];
|
|
35673
35695
|
}
|
|
35674
35696
|
// Remove a seleção de todos os itens visíveis na tabela
|
|
35675
35697
|
onAllUnselected(items) {
|
|
35676
35698
|
this.poTable.unselectRows();
|
|
35699
|
+
this.selectedItems = [];
|
|
35677
35700
|
this.selecteds = [];
|
|
35678
35701
|
}
|
|
35679
35702
|
openModal() {
|
|
@@ -62048,24 +62071,6 @@ const I18N_CONFIG = new InjectionToken('I18N_CONFIG');
|
|
|
62048
62071
|
* porém, nenhuma das propriedades são obrigatórias. Caso nenhum parâmetro seja passado, serão buscadas
|
|
62049
62072
|
* todas as literais do contexto definido com padrão, no idioma definido como padrão.
|
|
62050
62073
|
*
|
|
62051
|
-
* * ## Alterações a partir da versão 19
|
|
62052
|
-
* A partir da versão 19, para evitar conflitos com bibliotecas de terceiros que também utilizam i18n,
|
|
62053
|
-
* é necessário passar explicitamente o contexto ao chamar `getLiterals`, garantindo a correta exibição das literais.
|
|
62054
|
-
* Caso `getLiterals` seja chamado sem parâmetros, o retorno pode vir das configurações da biblioteca de terceiros.
|
|
62055
|
-
*
|
|
62056
|
-
* **Exemplo de chamada com contexto explícito:**
|
|
62057
|
-
* ```typescript
|
|
62058
|
-
* poI18nService.getLiterals({ context: 'general' }).subscribe(literals => console.log(literals));
|
|
62059
|
-
* ```
|
|
62060
|
-
*
|
|
62061
|
-
* **Cenário de Contextos Iguais:**
|
|
62062
|
-
* Caso tanto a aplicação quanto uma biblioteca de terceiros utilizem o mesmo nome de contexto,
|
|
62063
|
-
* o PO UI fará um merge das literais, priorizando os valores definidos na aplicação cliente.
|
|
62064
|
-
*
|
|
62065
|
-
* **Recomendações:**
|
|
62066
|
-
* - Sempre informar o contexto ao chamar `getLiterals` para evitar conflitos de literais.
|
|
62067
|
-
* - Caso a aplicação utilize `lazy loading`, utilizar `setLanguage()` para garantir a correta configuração de idioma.
|
|
62068
|
-
*
|
|
62069
62074
|
* Exemplos de requisição:
|
|
62070
62075
|
* ```
|
|
62071
62076
|
* literals = {};
|
|
@@ -62174,7 +62179,6 @@ const I18N_CONFIG = new InjectionToken('I18N_CONFIG');
|
|
|
62174
62179
|
* }));
|
|
62175
62180
|
*
|
|
62176
62181
|
* });
|
|
62177
|
-
*
|
|
62178
62182
|
* ```
|
|
62179
62183
|
*/
|
|
62180
62184
|
class PoI18nBaseService {
|
|
@@ -62498,31 +62502,8 @@ class PoI18nService extends PoI18nBaseService {
|
|
|
62498
62502
|
}]
|
|
62499
62503
|
}], null, null); })();
|
|
62500
62504
|
// Função usada para retornar instância para o módulo po-i18n.module
|
|
62501
|
-
function returnPoI18nService(
|
|
62502
|
-
|
|
62503
|
-
...config,
|
|
62504
|
-
contexts: config.contexts,
|
|
62505
|
-
default: config.default
|
|
62506
|
-
}));
|
|
62507
|
-
const mergedObject = mergePoI18nConfigs(validatedConfigs);
|
|
62508
|
-
return new PoI18nService(mergedObject, http, languageService);
|
|
62509
|
-
}
|
|
62510
|
-
function mergePoI18nConfigs(objects) {
|
|
62511
|
-
return objects.reduce((acc, current) => {
|
|
62512
|
-
if (!acc.default) {
|
|
62513
|
-
acc.default = { ...current.default };
|
|
62514
|
-
}
|
|
62515
|
-
Object.entries(current.contexts || {}).forEach(([context, languages]) => {
|
|
62516
|
-
acc.contexts[context] = acc.contexts[context] || {};
|
|
62517
|
-
Object.entries(languages).forEach(([lang, translations]) => {
|
|
62518
|
-
acc.contexts[context][lang] = {
|
|
62519
|
-
...acc.contexts[context][lang],
|
|
62520
|
-
...translations
|
|
62521
|
-
};
|
|
62522
|
-
});
|
|
62523
|
-
});
|
|
62524
|
-
return acc;
|
|
62525
|
-
}, { contexts: {} });
|
|
62505
|
+
function returnPoI18nService(config, http, languageService) {
|
|
62506
|
+
return new PoI18nService(config, http, languageService);
|
|
62526
62507
|
}
|
|
62527
62508
|
|
|
62528
62509
|
/**
|
|
@@ -62661,6 +62642,7 @@ function mergePoI18nConfigs(objects) {
|
|
|
62661
62642
|
* Para aplicações que utilizem a abordagem de módulos com carregamento *lazy loading*, caso seja
|
|
62662
62643
|
* definida outra configuração do `PoI18nModule`, deve-se atentar os seguintes detalhes:
|
|
62663
62644
|
*
|
|
62645
|
+
* - Caso existam literais comuns na aplicação, estas devem ser reimportadas;
|
|
62664
62646
|
* - Não defina outra *default language* para este módulo. Caso for definida, será sobreposta para
|
|
62665
62647
|
* toda a aplicação;
|
|
62666
62648
|
* - Caso precise de módulos carregados via *lazy loading* com linguagens diferentes, utilize o
|
|
@@ -62674,8 +62656,7 @@ class PoI18nModule {
|
|
|
62674
62656
|
providers: [
|
|
62675
62657
|
{
|
|
62676
62658
|
provide: I18N_CONFIG,
|
|
62677
|
-
useValue: config
|
|
62678
|
-
multi: true
|
|
62659
|
+
useValue: config
|
|
62679
62660
|
},
|
|
62680
62661
|
provideAppInitializer(() => {
|
|
62681
62662
|
const initializerFn = initializeLanguageDefault(inject(I18N_CONFIG), inject(PoLanguageService));
|
|
@@ -62700,13 +62681,14 @@ class PoI18nModule {
|
|
|
62700
62681
|
}]
|
|
62701
62682
|
}], null, null); })();
|
|
62702
62683
|
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(PoI18nModule, { imports: [PoLanguageModule] }); })();
|
|
62703
|
-
function initializeLanguageDefault(
|
|
62704
|
-
|
|
62705
|
-
|
|
62706
|
-
if (config
|
|
62684
|
+
function initializeLanguageDefault(config, languageService) {
|
|
62685
|
+
// eslint-disable-next-line sonarjs/prefer-immediate-return
|
|
62686
|
+
const setDefaultLanguage = () => {
|
|
62687
|
+
if (config.default.language) {
|
|
62707
62688
|
languageService.setLanguageDefault(config.default.language);
|
|
62708
62689
|
}
|
|
62709
62690
|
};
|
|
62691
|
+
return setDefaultLanguage;
|
|
62710
62692
|
}
|
|
62711
62693
|
|
|
62712
62694
|
/**
|
|
@@ -62726,5 +62708,5 @@ function initializeLanguageDefault(configs, languageService) {
|
|
|
62726
62708
|
* Generated bundle index. Do not edit.
|
|
62727
62709
|
*/
|
|
62728
62710
|
|
|
62729
|
-
export { AnimaliaIconDictionary, ForceBooleanComponentEnum, ForceOptionComponentEnum, I18N_CONFIG, ICONS_DICTIONARY, InputBoolean, InputRequired, PO_CONTROL_POSITIONS, PoAccordionComponent, PoAccordionItemComponent, PoAccordionModule, PoActiveOverlayModule, PoActiveOverlayService, PoAvatarComponent, PoAvatarModule, PoBadgeComponent, PoBadgeModule, PoBreadcrumbComponent, PoBreadcrumbModule, PoButtonComponent, PoButtonGroupComponent, PoButtonGroupModule, PoButtonGroupToggle, PoButtonModule, PoButtonType, PoCalendarComponent, PoCalendarMode, PoCalendarModule, PoChartComponent, PoChartLabelFormat, PoChartModule, PoChartType, PoCheckboxComponent, PoCheckboxGroupComponent, PoCheckboxGroupModule, PoCheckboxModule, PoCheckboxSize, PoCleanComponent, PoCleanModule, PoColorPaletteModule, PoColorPaletteService, PoComboComponent, PoComboFilterMode, PoComboOptionTemplateDirective, PoComponentInjectorModule, PoComponentInjectorService, PoComponentsModule, PoContainerComponent, PoContainerModule, 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, PoHttpInterceptorModule, PoHttpInterceptorService, PoHttpRequestInterceptorService, PoHttpRequestModule, PoI18nModule, PoI18nPipe, PoI18nService, PoIconComponent, PoIconDictionary, PoIconModule, PoImageComponent, PoImageModule, PoInfoComponent, PoInfoModule, PoInfoOrientation, PoInputComponent, PoInterceptorsModule, PoItemListComponent, PoLabelComponent, PoLabelModule, PoLanguageModule, PoLanguageService, PoLinkComponent, PoLinkModule, PoListBoxComponent, PoListBoxModule, PoListViewComponent, PoListViewContentTemplateDirective, PoListViewDetailTemplateDirective, PoListViewModule, PoLoadingComponent, PoLoadingIconComponent, PoLoadingModule, PoLoadingOverlayComponent, PoLoginComponent, PoLogoComponent, PoLogoModule, PoLookupComponent, PoLookupModalComponent, PoMask, PoMediaQueryModule, PoMediaQueryService, PoMenuComponent, PoMenuGlobalService, PoMenuHeaderTemplateDirective, PoMenuModule, PoMenuPanelComponent, PoMenuPanelModule, PoModalComponent, PoModalFooterComponent, PoModalModule, PoModule, PoMultiselectComponent, PoMultiselectFilterMode, PoMultiselectOptionTemplateDirective, PoNavbarComponent, PoNavbarModule, PoNotificationModule, PoNotificationService, PoNumberComponent, PoOverlayComponent, PoOverlayModule, PoPageDefaultComponent, PoPageDetailComponent, PoPageEditComponent, PoPageListComponent, PoPageModule, PoPageSlideComponent, PoPageSlideFooterComponent, PoPageSlideModule, PoPasswordComponent, PoPipesModule, PoPopoverComponent, PoPopoverModule, PoPopupComponent, PoPopupModule, PoProgressComponent, PoProgressModule, PoProgressSize, PoProgressStatus, PoRadioComponent, PoRadioGroupComponent, PoRadioGroupModule, PoRadioModule, PoRichTextComponent, PoRichTextToolbarActions, PoSearchComponent, PoSearchFilterMode, PoSearchListComponent, PoSearchModule, PoSelectComponent, PoServicesModule, PoSlideComponent, PoSlideContentTemplateDirective, PoSlideModule, PoStepComponent, PoStepperComponent, PoStepperModule, PoStepperOrientation, PoStepperStatus, PoSwitchComponent, PoSwitchLabelPosition, PoSwitchModule, PoTabComponent, PoTableCellTemplateDirective, PoTableColumnFrozenDirective, PoTableColumnSortType, PoTableColumnSpacing, PoTableColumnTemplateDirective, PoTableComponent, PoTableModule, PoTableRowTemplateArrowDirection, PoTableRowTemplateDirective, PoTabsComponent, PoTabsModule, PoTabsService, PoTagComponent, PoTagModule, PoTagOrientation, PoTagType, PoTextareaComponent, PoThemeA11yEnum, PoThemeModule, PoThemeService, PoThemeTypeEnum, PoTimeModule, PoTimePipe, PoToasterComponent, PoToasterMode, PoToasterModule, PoToasterOrientation, PoToasterType, PoToolbarComponent, PoToolbarModule, PoTooltipDirective, PoTooltipModule, PoTreeViewComponent, PoTreeViewModule, PoUploadComponent, PoUploadFile, PoUploadStatus, PoUrlComponent, PoWidgetComponent, PoWidgetModule, initializeLanguageDefault,
|
|
62711
|
+
export { AnimaliaIconDictionary, ForceBooleanComponentEnum, ForceOptionComponentEnum, I18N_CONFIG, ICONS_DICTIONARY, InputBoolean, InputRequired, PO_CONTROL_POSITIONS, PoAccordionComponent, PoAccordionItemComponent, PoAccordionModule, PoActiveOverlayModule, PoActiveOverlayService, PoAvatarComponent, PoAvatarModule, PoBadgeComponent, PoBadgeModule, PoBreadcrumbComponent, PoBreadcrumbModule, PoButtonComponent, PoButtonGroupComponent, PoButtonGroupModule, PoButtonGroupToggle, PoButtonModule, PoButtonType, PoCalendarComponent, PoCalendarMode, PoCalendarModule, PoChartComponent, PoChartLabelFormat, PoChartModule, PoChartType, PoCheckboxComponent, PoCheckboxGroupComponent, PoCheckboxGroupModule, PoCheckboxModule, PoCheckboxSize, PoCleanComponent, PoCleanModule, PoColorPaletteModule, PoColorPaletteService, PoComboComponent, PoComboFilterMode, PoComboOptionTemplateDirective, PoComponentInjectorModule, PoComponentInjectorService, PoComponentsModule, PoContainerComponent, PoContainerModule, 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, PoHttpInterceptorModule, PoHttpInterceptorService, PoHttpRequestInterceptorService, PoHttpRequestModule, PoI18nModule, PoI18nPipe, PoI18nService, PoIconComponent, PoIconDictionary, PoIconModule, PoImageComponent, PoImageModule, PoInfoComponent, PoInfoModule, PoInfoOrientation, PoInputComponent, PoInterceptorsModule, PoItemListComponent, PoLabelComponent, PoLabelModule, PoLanguageModule, PoLanguageService, PoLinkComponent, PoLinkModule, PoListBoxComponent, PoListBoxModule, PoListViewComponent, PoListViewContentTemplateDirective, PoListViewDetailTemplateDirective, PoListViewModule, PoLoadingComponent, PoLoadingIconComponent, PoLoadingModule, PoLoadingOverlayComponent, PoLoginComponent, PoLogoComponent, PoLogoModule, PoLookupComponent, PoLookupModalComponent, PoMask, PoMediaQueryModule, PoMediaQueryService, PoMenuComponent, PoMenuGlobalService, PoMenuHeaderTemplateDirective, PoMenuModule, PoMenuPanelComponent, PoMenuPanelModule, PoModalComponent, PoModalFooterComponent, PoModalModule, PoModule, PoMultiselectComponent, PoMultiselectFilterMode, PoMultiselectOptionTemplateDirective, PoNavbarComponent, PoNavbarModule, PoNotificationModule, PoNotificationService, PoNumberComponent, PoOverlayComponent, PoOverlayModule, PoPageDefaultComponent, PoPageDetailComponent, PoPageEditComponent, PoPageListComponent, PoPageModule, PoPageSlideComponent, PoPageSlideFooterComponent, PoPageSlideModule, PoPasswordComponent, PoPipesModule, PoPopoverComponent, PoPopoverModule, PoPopupComponent, PoPopupModule, PoProgressComponent, PoProgressModule, PoProgressSize, PoProgressStatus, PoRadioComponent, PoRadioGroupComponent, PoRadioGroupModule, PoRadioModule, PoRichTextComponent, PoRichTextToolbarActions, PoSearchComponent, PoSearchFilterMode, PoSearchListComponent, PoSearchModule, PoSelectComponent, PoServicesModule, PoSlideComponent, PoSlideContentTemplateDirective, PoSlideModule, PoStepComponent, PoStepperComponent, PoStepperModule, PoStepperOrientation, PoStepperStatus, PoSwitchComponent, PoSwitchLabelPosition, PoSwitchModule, PoTabComponent, PoTableCellTemplateDirective, PoTableColumnFrozenDirective, PoTableColumnSortType, PoTableColumnSpacing, PoTableColumnTemplateDirective, PoTableComponent, PoTableModule, PoTableRowTemplateArrowDirection, PoTableRowTemplateDirective, PoTabsComponent, PoTabsModule, PoTabsService, PoTagComponent, PoTagModule, PoTagOrientation, PoTagType, PoTextareaComponent, PoThemeA11yEnum, PoThemeModule, PoThemeService, PoThemeTypeEnum, PoTimeModule, PoTimePipe, PoToasterComponent, PoToasterMode, PoToasterModule, PoToasterOrientation, PoToasterType, PoToolbarComponent, PoToolbarModule, PoTooltipDirective, PoTooltipModule, PoTreeViewComponent, PoTreeViewModule, PoUploadComponent, PoUploadFile, PoUploadStatus, PoUrlComponent, PoWidgetComponent, PoWidgetModule, initializeLanguageDefault, poBreadcrumbLiterals, poDialogAlertLiteralsDefault, poDialogConfirmLiteralsDefault, poLanguageDefault, poLocaleDateSeparatorList, poLocaleDecimalSeparatorList, poLocaleDefault, poLocaleThousandSeparatorList, poLocales, poPageSlideLiteralsDefault, poTabsLiterals, poThemeDefault, poThemeDefaultAA, poThemeDefaultAAA, poThemeDefaultActions, poThemeDefaultActionsDark, poThemeDefaultBrands, poThemeDefaultBrandsDark, poThemeDefaultDark, poThemeDefaultDarkValues, poThemeDefaultFeedback, poThemeDefaultFeedbackDark, poThemeDefaultLight, poThemeDefaultLightValues, poThemeDefaultNeutrals, poThemeDefaultNeutralsDark, poToasterLiterals, returnPoI18nService };
|
|
62730
62712
|
//# sourceMappingURL=po-ui-ng-components.mjs.map
|