@po-ui/ng-components 5.15.0 → 5.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/bundles/po-ui-ng-components.umd.js +206 -162
  2. package/bundles/po-ui-ng-components.umd.js.map +1 -1
  3. package/esm2015/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range-literals.interface.js +1 -1
  4. package/esm2015/lib/components/po-field/po-datepicker-range/po-datepicker-range-base.component.js +48 -6
  5. package/esm2015/lib/components/po-field/po-datepicker-range/po-datepicker-range.component.js +2 -2
  6. package/esm2015/lib/components/po-field/po-datepicker-range/po-datepicker-range.literals.js +9 -5
  7. package/esm2015/lib/components/po-field/po-field.model.js +75 -0
  8. package/esm2015/lib/components/po-field/po-lookup/po-lookup-base.component.js +11 -5
  9. package/esm2015/lib/components/po-field/po-lookup/po-lookup.component.js +2 -2
  10. package/esm2015/lib/components/po-field/po-switch/po-switch.component.js +85 -9
  11. package/esm2015/lib/components/po-page/po-page-header/po-page-header.component.js +2 -2
  12. package/esm2015/lib/components/po-stepper/po-stepper-circle/po-stepper-circle.component.js +2 -2
  13. package/esm2015/lib/components/po-stepper/po-stepper-step/po-stepper-step.component.js +5 -4
  14. package/esm2015/lib/components/po-stepper/po-stepper.component.js +2 -2
  15. package/esm2015/lib/components/po-table/po-table-column-label/po-table-column-label.interface.js +1 -1
  16. package/esm2015/po-ui-ng-components.js +2 -2
  17. package/fesm2015/po-ui-ng-components.js +188 -141
  18. package/fesm2015/po-ui-ng-components.js.map +1 -1
  19. package/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range-literals.interface.d.ts +2 -0
  20. package/lib/components/po-field/po-datepicker-range/po-datepicker-range-base.component.d.ts +5 -3
  21. package/lib/components/po-field/po-field.model.d.ts +50 -0
  22. package/lib/components/po-field/po-lookup/po-lookup-base.component.d.ts +3 -1
  23. package/lib/components/po-field/po-switch/po-switch.component.d.ts +49 -3
  24. package/lib/components/po-stepper/po-stepper-step/po-stepper-step.component.d.ts +1 -0
  25. package/lib/components/po-table/po-table-column-label/po-table-column-label.interface.d.ts +1 -1
  26. package/package.json +4 -4
  27. package/po-ui-ng-components-5.16.0.tgz +0 -0
  28. package/po-ui-ng-components.d.ts +1 -1
  29. package/po-ui-ng-components.metadata.json +1 -1
  30. package/schematics/ng-add/index.js +1 -1
  31. package/schematics/ng-update/v2/index.js +1 -1
  32. package/schematics/ng-update/v3/index.js +1 -1
  33. package/schematics/ng-update/v4/index.js +1 -1
  34. package/schematics/ng-update/v5/index.js +1 -1
  35. package/esm2015/lib/components/po-field/po-switch/po-switch-base.component.js +0 -158
  36. package/lib/components/po-field/po-switch/po-switch-base.component.d.ts +0 -100
  37. package/po-ui-ng-components-5.15.0.tgz +0 -0
@@ -15367,19 +15367,23 @@ PoComboComponent.propDecorators = {
15367
15367
  const poDatepickerRangeLiteralsDefault = {
15368
15368
  en: {
15369
15369
  invalidFormat: 'Date in invalid format',
15370
- startDateGreaterThanEndDate: 'Start date greater than end date'
15370
+ startDateGreaterThanEndDate: 'Start date greater than end date',
15371
+ invalidDate: 'Invalid date'
15371
15372
  },
15372
15373
  es: {
15373
15374
  invalidFormat: 'Fecha en formato no válido',
15374
- startDateGreaterThanEndDate: 'Fecha de inicio mayor que fecha final'
15375
+ startDateGreaterThanEndDate: 'Fecha de inicio mayor que fecha final',
15376
+ invalidDate: 'Fecha invalida'
15375
15377
  },
15376
15378
  pt: {
15377
15379
  invalidFormat: 'Data no formato inválido',
15378
- startDateGreaterThanEndDate: 'Data inicial maior que data final'
15380
+ startDateGreaterThanEndDate: 'Data inicial maior que data final',
15381
+ invalidDate: 'Data inválida'
15379
15382
  },
15380
15383
  ru: {
15381
15384
  invalidFormat: 'Дата в неверном формате',
15382
- startDateGreaterThanEndDate: 'Дата начала больше даты окончания'
15385
+ startDateGreaterThanEndDate: 'Дата начала больше даты окончания',
15386
+ invalidDate: 'Недействительная дата'
15383
15387
  }
15384
15388
  };
15385
15389
 
@@ -15647,6 +15651,14 @@ class PoDatepickerRangeBaseComponent {
15647
15651
  }
15648
15652
  };
15649
15653
  }
15654
+ if (!this.verifyValidDate(startDate, endDate)) {
15655
+ this.errorMessage = this.literals.invalidDate;
15656
+ return {
15657
+ date: {
15658
+ valid: false
15659
+ }
15660
+ };
15661
+ }
15650
15662
  if (this.dateRangeObjectFailed(control.value) || this.dateRangeFormatFailed(startDate, endDate)) {
15651
15663
  this.errorMessage = this.literals.invalidFormat;
15652
15664
  return {
@@ -15702,6 +15714,17 @@ class PoDatepickerRangeBaseComponent {
15702
15714
  this.validatorChange(model);
15703
15715
  }
15704
15716
  }
15717
+ verifyValidDate(startDate, endDate) {
15718
+ if (startDate !== '' && endDate !== '') {
15719
+ return this.dateIsValid(startDate) && this.dateIsValid(endDate);
15720
+ }
15721
+ else if (startDate !== '') {
15722
+ return this.dateIsValid(startDate);
15723
+ }
15724
+ else {
15725
+ return this.dateIsValid(endDate);
15726
+ }
15727
+ }
15705
15728
  convertPatternDateFormat(value) {
15706
15729
  if (value instanceof Date) {
15707
15730
  return this.poDateService.convertDateToISO(value);
@@ -15725,6 +15748,29 @@ class PoDatepickerRangeBaseComponent {
15725
15748
  requiredFailed(this.required, this.disabled, startDate) &&
15726
15749
  requiredFailed(this.required, this.disabled, endDate));
15727
15750
  }
15751
+ dateIsValid(date) {
15752
+ const [strYear, strMonth, strDay] = date.split('-');
15753
+ const year = Number(strYear);
15754
+ const month = Number(strMonth);
15755
+ const day = Number(strDay);
15756
+ //verificação dos meses com 31 dias
15757
+ if (month === 1 || month === 3 || month === 5 || month === 7 || month === 8 || month === 10 || month === 12) {
15758
+ return day < 1 || day > 31 ? false : true;
15759
+ }
15760
+ else if (month === 4 || month === 6 || month === 9 || month === 11) {
15761
+ //verificação dos meses com 30 dias
15762
+ return day < 1 || day > 30 ? false : true;
15763
+ }
15764
+ else {
15765
+ //verificacao de ano bissexto para verificar até qual dia irá o mês de fevereiro
15766
+ if ((year % 4 === 0 && year % 100 !== 0) || year % 400 === 0) {
15767
+ return day < 1 || day > 29 ? false : true;
15768
+ }
15769
+ else {
15770
+ return day < 1 || day > 28 ? false : true;
15771
+ }
15772
+ }
15773
+ }
15728
15774
  }
15729
15775
  PoDatepickerRangeBaseComponent.decorators = [
15730
15776
  { type: Directive }
@@ -15995,7 +16041,7 @@ class PoDatepickerRangeComponent extends PoDatepickerRangeBaseComponent {
15995
16041
  getDateRangeFormatValidation(startDate, endDate, isStartDateTargetEvent) {
15996
16042
  this.setDateRangeInputValidation(startDate, endDate);
15997
16043
  return {
15998
- isValid: this.isDateRangeInputFormatValid && this.isStartDateRangeInputValid,
16044
+ isValid: this.isDateRangeInputFormatValid && this.isStartDateRangeInputValid && this.verifyValidDate(startDate, endDate),
15999
16045
  dateRangeModel: this.getValidatedModel(startDate, endDate, isStartDateTargetEvent)
16000
16046
  };
16001
16047
  }
@@ -17545,6 +17591,8 @@ class PoLookupBaseComponent {
17545
17591
  * @default `false`
17546
17592
  */
17547
17593
  this.infiniteScroll = false;
17594
+ /** Exibe um ícone que permite limpar o campo. */
17595
+ this.clean = false;
17548
17596
  /**
17549
17597
  * Evento será disparado quando ocorrer algum erro na requisição de busca do item.
17550
17598
  * Será passado por parâmetro o objeto de erro retornado.
@@ -17696,6 +17744,10 @@ class PoLookupBaseComponent {
17696
17744
  ngAfterViewInit() {
17697
17745
  this.setControl();
17698
17746
  }
17747
+ cleanModel() {
17748
+ this.cleanViewValue();
17749
+ this.callOnChange(undefined);
17750
+ }
17699
17751
  // Função implementada do ControlValueAccessor
17700
17752
  // Usada para interceptar os estados de habilitado via forms api
17701
17753
  setDisabledState(isDisabled) {
@@ -17795,10 +17847,6 @@ class PoLookupBaseComponent {
17795
17847
  this.cleanViewValue();
17796
17848
  }
17797
17849
  }
17798
- cleanModel() {
17799
- this.cleanViewValue();
17800
- this.callOnChange(undefined);
17801
- }
17802
17850
  cleanViewValue() {
17803
17851
  this.setViewValue('', {});
17804
17852
  this.oldValue = '';
@@ -17867,6 +17915,7 @@ PoLookupBaseComponent.propDecorators = {
17867
17915
  optional: [{ type: Input, args: ['p-optional',] }],
17868
17916
  advancedFilters: [{ type: Input, args: ['p-advanced-filters',] }],
17869
17917
  infiniteScroll: [{ type: Input, args: ['p-infinite-scroll',] }],
17918
+ clean: [{ type: Input, args: ['p-clean',] }],
17870
17919
  onError: [{ type: Output, args: ['p-error',] }],
17871
17920
  selected: [{ type: Output, args: ['p-selected',] }],
17872
17921
  change: [{ type: Output, args: ['p-change',] }],
@@ -17881,6 +17930,9 @@ __decorate([
17881
17930
  __decorate([
17882
17931
  InputBoolean()
17883
17932
  ], PoLookupBaseComponent.prototype, "infiniteScroll", void 0);
17933
+ __decorate([
17934
+ InputBoolean()
17935
+ ], PoLookupBaseComponent.prototype, "clean", void 0);
17884
17936
 
17885
17937
  /**
17886
17938
  *
@@ -18863,7 +18915,7 @@ class PoLookupComponent extends PoLookupBaseComponent {
18863
18915
  PoLookupComponent.decorators = [
18864
18916
  { type: Component, args: [{
18865
18917
  selector: 'po-lookup',
18866
- template: "<po-field-container [p-label]=\"label\" [p-help]=\"help\" [p-optional]=\"!required && optional\">\n <div class=\"po-field-container-content\">\n <input\n #inp\n class=\"po-input po-input-icon-right\"\n type=\"text\"\n [autocomplete]=\"autocomplete\"\n [disabled]=\"disabled\"\n [placeholder]=\"placeholder\"\n [required]=\"required\"\n (blur)=\"searchEvent()\"\n />\n\n <div class=\"po-field-icon-container-right\">\n <span\n #iconLookup\n class=\"po-icon po-field-icon po-icon-search\"\n tabindex=\"-1\"\n [class.po-field-icon]=\"!disabled\"\n [class.po-field-icon-disabled]=\"disabled\"\n (click)=\"openLookup()\"\n (focus)=\"inp.focus()\"\n >\n </span>\n </div>\n </div>\n\n <po-field-container-bottom></po-field-container-bottom>\n</po-field-container>\n",
18918
+ template: "<po-field-container [p-label]=\"label\" [p-help]=\"help\" [p-optional]=\"!required && optional\">\n <div class=\"po-field-container-content\">\n <input\n #inp\n class=\"po-input\"\n type=\"text\"\n [ngClass]=\"clean && inp.value ? 'po-input-double-icon-right' : 'po-input-icon-right'\"\n [autocomplete]=\"autocomplete\"\n [disabled]=\"disabled\"\n [placeholder]=\"placeholder\"\n [required]=\"required\"\n (blur)=\"searchEvent()\"\n />\n\n <div class=\"po-field-icon-container-right\">\n <po-clean *ngIf=\"clean && !disabled\" [p-element-ref]=\"inputEl\" (p-change-event)=\"cleanModel()\"> </po-clean>\n\n <span\n #iconLookup\n class=\"po-icon po-field-icon po-icon-search\"\n tabindex=\"-1\"\n [class.po-field-icon]=\"!disabled\"\n [class.po-field-icon-disabled]=\"disabled\"\n (click)=\"openLookup()\"\n (focus)=\"inp.focus()\"\n >\n </span>\n </div>\n </div>\n\n <po-field-container-bottom></po-field-container-bottom>\n</po-field-container>\n",
18867
18919
  providers: providers$2
18868
18920
  },] }
18869
18921
  ];
@@ -22368,37 +22420,8 @@ PoSelectComponent.propDecorators = {
22368
22420
  onKeydown: [{ type: HostListener, args: ['keydown', ['$event'],] }]
22369
22421
  };
22370
22422
 
22371
- /**
22372
- * @usedBy PoSwitchComponent
22373
- *
22374
- * @description
22375
- *
22376
- * Enum para posicionar o label do valor do po-switch.
22377
- */
22378
- var PoSwitchLabelPosition;
22379
- (function (PoSwitchLabelPosition) {
22380
- /** Posiciona o label do lado esquerdo do switch. */
22381
- PoSwitchLabelPosition[PoSwitchLabelPosition["Right"] = 0] = "Right";
22382
- /** Posiciona o label do lado direito do switch. */
22383
- PoSwitchLabelPosition[PoSwitchLabelPosition["Left"] = 1] = "Left";
22384
- })(PoSwitchLabelPosition || (PoSwitchLabelPosition = {}));
22385
-
22386
- /**
22387
- * @description
22388
- *
22389
- * O componente `po-switch` é um [checkbox](/documentation/po-checkbox-group) mais intuitivo, pois faz analogia a um interruptor.
22390
- * Deve ser usado quando deseja-se transmitir a ideia de ligar / desligar uma funcionalidade específica.
22391
- *
22392
- * Pode-se ligar ou deligar o botão utilizando a tecla de espaço ou o clique do mouse.
22393
- *
22394
- * O texto exibido pode ser alterado de acordo com o valor setado aumentando as possibilidades de uso do componente,
22395
- * portanto, recomenda-se informar textos que contextualizem seu uso para que facilite a compreensão do usuário.
22396
- *
22397
- * > O componente não altera o valor incial informado no *model*, portanto indica-se inicializa-lo caso ter necessidade.
22398
- */
22399
- class PoSwitchBaseComponent {
22400
- constructor(changeDetector) {
22401
- this.changeDetector = changeDetector;
22423
+ class PoFieldModel {
22424
+ constructor() {
22402
22425
  /**
22403
22426
  * @optional
22404
22427
  *
@@ -22416,85 +22439,19 @@ class PoSwitchBaseComponent {
22416
22439
  *
22417
22440
  * @description
22418
22441
  *
22419
- * Evento disparado ao alterar valor do campo.
22420
- */
22421
- this.change = new EventEmitter();
22422
- /**
22423
- * @optional
22424
- *
22425
- * @description
22426
- *
22427
- * Função para atualizar o ngModel do componente, necessário quando não for utilizado dentro da tag form.
22428
- */
22429
- this.ngModelChange = new EventEmitter();
22430
- this.switchValue = false;
22431
- this._disabled = false;
22432
- /**
22433
- * Texto exibido quando o valor do componente for `true`.
22434
- *
22435
- * @default `true`
22436
- */
22437
- // eslint-disable-next-line @typescript-eslint/member-ordering
22438
- this.labelOn = 'true';
22439
- /**
22440
- * Texto exibido quando o valor do componente for `false`.
22442
+ * Indica se o campo será desabilitado.
22441
22443
  *
22442
22444
  * @default `false`
22443
22445
  */
22444
- // eslint-disable-next-line @typescript-eslint/member-ordering
22445
- this.labelOff = 'false';
22446
+ this.disabled = false;
22446
22447
  /**
22447
22448
  * @optional
22448
22449
  *
22449
22450
  * @description
22450
22451
  *
22451
- * Posição de exibição do rótulo.
22452
- *
22453
- * > Por padrão exibe à direita.
22452
+ * Evento disparado ao alterar valor do campo.
22454
22453
  */
22455
- // eslint-disable-next-line @typescript-eslint/member-ordering
22456
- this.labelPosition = PoSwitchLabelPosition.Right;
22457
- }
22458
- set setLabelOn(label) {
22459
- this.labelOn = label || 'true';
22460
- }
22461
- set setLabelOff(label) {
22462
- this.labelOff = label || 'false';
22463
- }
22464
- set setLabelPosition(position) {
22465
- this.labelPosition = position in PoSwitchLabelPosition ? parseInt(position, 10) : PoSwitchLabelPosition.Right;
22466
- }
22467
- /**
22468
- * @optional
22469
- *
22470
- * @description
22471
- *
22472
- * Indica se o campo será desabilitado.
22473
- *
22474
- * @default `false`
22475
- */
22476
- set disabled(disabled) {
22477
- this._disabled = convertToBoolean(disabled);
22478
- }
22479
- get disabled() {
22480
- return this._disabled;
22481
- }
22482
- changeValue(value) {
22483
- if (this.switchValue !== value) {
22484
- this.switchValue = value;
22485
- if (this.propagateChange) {
22486
- this.propagateChange(value);
22487
- }
22488
- else {
22489
- this.ngModelChange.emit(value);
22490
- }
22491
- this.change.emit(this.switchValue);
22492
- }
22493
- }
22494
- eventClick() {
22495
- if (!this.disabled) {
22496
- this.changeValue(!this.switchValue);
22497
- }
22454
+ this.change = new EventEmitter();
22498
22455
  }
22499
22456
  // Função implementada do ControlValueAccessor
22500
22457
  // Usada para interceptar os estados de habilitado via forms api
@@ -22508,36 +22465,62 @@ class PoSwitchBaseComponent {
22508
22465
  this.onTouched = fn;
22509
22466
  }
22510
22467
  writeValue(value) {
22511
- if (value !== this.switchValue) {
22512
- this.switchValue = !!value;
22513
- this.changeDetector.markForCheck();
22468
+ this.onWriteValue(value);
22469
+ }
22470
+ updateModel(value) {
22471
+ if (this.propagateChange) {
22472
+ this.propagateChange(value);
22514
22473
  }
22515
22474
  }
22516
22475
  }
22517
- PoSwitchBaseComponent.decorators = [
22476
+ PoFieldModel.decorators = [
22518
22477
  { type: Directive }
22519
22478
  ];
22520
- PoSwitchBaseComponent.ctorParameters = () => [
22521
- { type: ChangeDetectorRef }
22522
- ];
22523
- PoSwitchBaseComponent.propDecorators = {
22524
- name: [{ type: Input, args: ['name',] }],
22525
- autoFocus: [{ type: Input, args: ['p-auto-focus',] }],
22479
+ PoFieldModel.ctorParameters = () => [];
22480
+ PoFieldModel.propDecorators = {
22526
22481
  label: [{ type: Input, args: ['p-label',] }],
22482
+ name: [{ type: Input, args: ['name',] }],
22527
22483
  help: [{ type: Input, args: ['p-help',] }],
22528
- change: [{ type: Output, args: ['p-change',] }],
22529
- ngModelChange: [{ type: Output, args: ['ngModelChange',] }],
22530
- setLabelOn: [{ type: Input, args: ['p-label-on',] }],
22531
- setLabelOff: [{ type: Input, args: ['p-label-off',] }],
22532
- setLabelPosition: [{ type: Input, args: ['p-label-position',] }],
22533
- disabled: [{ type: Input, args: ['p-disabled',] }]
22484
+ autoFocus: [{ type: Input, args: ['p-auto-focus',] }],
22485
+ disabled: [{ type: Input, args: ['p-disabled',] }],
22486
+ change: [{ type: Output, args: ['p-change',] }]
22534
22487
  };
22535
22488
  __decorate([
22536
22489
  InputBoolean()
22537
- ], PoSwitchBaseComponent.prototype, "autoFocus", void 0);
22490
+ ], PoFieldModel.prototype, "autoFocus", void 0);
22491
+ __decorate([
22492
+ InputBoolean()
22493
+ ], PoFieldModel.prototype, "disabled", void 0);
22494
+
22495
+ /**
22496
+ * @usedBy PoSwitchComponent
22497
+ *
22498
+ * @description
22499
+ *
22500
+ * Enum para posicionar o label do valor do po-switch.
22501
+ */
22502
+ var PoSwitchLabelPosition;
22503
+ (function (PoSwitchLabelPosition) {
22504
+ /** Posiciona o label do lado esquerdo do switch. */
22505
+ PoSwitchLabelPosition[PoSwitchLabelPosition["Right"] = 0] = "Right";
22506
+ /** Posiciona o label do lado direito do switch. */
22507
+ PoSwitchLabelPosition[PoSwitchLabelPosition["Left"] = 1] = "Left";
22508
+ })(PoSwitchLabelPosition || (PoSwitchLabelPosition = {}));
22538
22509
 
22539
22510
  /**
22540
- * @docsExtends PoSwitchBaseComponent
22511
+ * @docsExtends PoFieldModel
22512
+ *
22513
+ * @description
22514
+ *
22515
+ * O componente `po-switch` é um [checkbox](/documentation/po-checkbox-group) mais intuitivo, pois faz analogia a um interruptor.
22516
+ * Deve ser usado quando deseja-se transmitir a ideia de ligar / desligar uma funcionalidade específica.
22517
+ *
22518
+ * Pode-se ligar ou deligar o botão utilizando a tecla de espaço ou o clique do mouse.
22519
+ *
22520
+ * O texto exibido pode ser alterado de acordo com o valor setado aumentando as possibilidades de uso do componente,
22521
+ * portanto, recomenda-se informar textos que contextualizem seu uso para que facilite a compreensão do usuário.
22522
+ *
22523
+ * > O componente não altera o valor incial informado no *model*, portanto indica-se inicializa-lo caso ter necessidade.
22541
22524
  *
22542
22525
  * @example
22543
22526
  *
@@ -22563,9 +22546,51 @@ __decorate([
22563
22546
  * <file name="sample-po-switch-order-reactive-form/sample-po-switch-order-reactive-form.component.ts"> </file>
22564
22547
  * </example>
22565
22548
  */
22566
- class PoSwitchComponent extends PoSwitchBaseComponent {
22549
+ class PoSwitchComponent extends PoFieldModel {
22567
22550
  constructor(changeDetector) {
22568
- super(changeDetector);
22551
+ super();
22552
+ this.changeDetector = changeDetector;
22553
+ this.value = false;
22554
+ this._labelOff = 'false';
22555
+ this._labelOn = 'true';
22556
+ this._labelPosition = PoSwitchLabelPosition.Right;
22557
+ }
22558
+ /**
22559
+ * @optional
22560
+ *
22561
+ * @description
22562
+ *
22563
+ * Posição de exibição do rótulo.
22564
+ *
22565
+ * > Por padrão exibe à direita.
22566
+ */
22567
+ set labelPosition(position) {
22568
+ this._labelPosition = position in PoSwitchLabelPosition ? parseInt(position, 10) : PoSwitchLabelPosition.Right;
22569
+ }
22570
+ get labelPosition() {
22571
+ return this._labelPosition;
22572
+ }
22573
+ /**
22574
+ * Texto exibido quando o valor do componente for `false`.
22575
+ *
22576
+ * @default `false`
22577
+ */
22578
+ set labelOff(label) {
22579
+ this._labelOff = label || 'false';
22580
+ }
22581
+ get labelOff() {
22582
+ return this._labelOff;
22583
+ }
22584
+ /**
22585
+ * Texto exibido quando o valor do componente for `true`.
22586
+ *
22587
+ * @default `true`
22588
+ */
22589
+ set labelOn(label) {
22590
+ this._labelOn = label || 'true';
22591
+ }
22592
+ get labelOn() {
22593
+ return this._labelOn;
22569
22594
  }
22570
22595
  ngAfterViewInit() {
22571
22596
  if (this.autoFocus) {
@@ -22619,16 +22644,34 @@ class PoSwitchComponent extends PoSwitchBaseComponent {
22619
22644
  }
22620
22645
  }
22621
22646
  onKeyDown(event) {
22622
- if (event.which === 32 || event.keyCode === 32) {
22647
+ if (event.which === PoKeyCodeEnum.space || event.keyCode === PoKeyCodeEnum.space) {
22623
22648
  event.preventDefault();
22624
22649
  this.eventClick();
22625
22650
  }
22626
22651
  }
22652
+ changeValue(value) {
22653
+ if (this.value !== value) {
22654
+ this.value = value;
22655
+ this.updateModel(value);
22656
+ this.change.emit(this.value);
22657
+ }
22658
+ }
22659
+ eventClick() {
22660
+ if (!this.disabled) {
22661
+ this.changeValue(!this.value);
22662
+ }
22663
+ }
22664
+ onWriteValue(value) {
22665
+ if (value !== this.value) {
22666
+ this.value = !!value;
22667
+ this.changeDetector.markForCheck();
22668
+ }
22669
+ }
22627
22670
  }
22628
22671
  PoSwitchComponent.decorators = [
22629
22672
  { type: Component, args: [{
22630
22673
  selector: 'po-switch',
22631
- template: "<po-field-container [p-label]=\"label\" [p-help]=\"help\">\n <div class=\"po-field-container-content po-switch-content\" [attr.name]=\"name\">\n <div\n class=\"po-switch-container po-clickable\"\n #switchContainer\n [class.po-switch-container-disabled]=\"disabled\"\n [class.po-switch-container-off]=\"switchValue === false && !disabled\"\n [class.po-switch-container-on]=\"switchValue === true && !disabled\"\n [class.po-switch-container-right]=\"getSwitchPosition() === 'right'\"\n [tabindex]=\"disabled ? -1 : 0\"\n (click)=\"eventClick()\"\n (keydown)=\"onKeyDown($event)\"\n (blur)=\"onBlur()\"\n >\n <div\n class=\"po-switch-button\"\n [class.po-switch-button-on]=\"switchValue === true\"\n [class.po-switch-button-off]=\"switchValue === false\"\n [class.po-switch-button-disabled]=\"disabled\"\n >\n <span class=\"po-icon po-icon-{{ switchValue === true ? 'ok' : 'close' }}\"></span>\n </div>\n </div>\n\n <span class=\"po-switch-label po-clickable po-switch-label-{{ getLabelPosition() }}\" (click)=\"eventClick()\">\n {{ switchValue === true ? labelOn : labelOff }}\n </span>\n </div>\n\n <po-field-container-bottom></po-field-container-bottom>\n</po-field-container>\n",
22674
+ template: "<po-field-container [p-label]=\"label\" [p-help]=\"help\">\n <div class=\"po-field-container-content po-switch-content\" [attr.name]=\"name\">\n <div\n class=\"po-switch-container po-clickable\"\n #switchContainer\n [class.po-switch-container-disabled]=\"disabled\"\n [class.po-switch-container-off]=\"value === false && !disabled\"\n [class.po-switch-container-on]=\"value === true && !disabled\"\n [class.po-switch-container-right]=\"getSwitchPosition() === 'right'\"\n [tabindex]=\"disabled ? -1 : 0\"\n (click)=\"eventClick()\"\n (keydown)=\"onKeyDown($event)\"\n (blur)=\"onBlur()\"\n >\n <div\n class=\"po-switch-button\"\n [class.po-switch-button-on]=\"value === true\"\n [class.po-switch-button-off]=\"value === false\"\n [class.po-switch-button-disabled]=\"disabled\"\n >\n <span class=\"po-icon po-icon-{{ value === true ? 'ok' : 'close' }}\"></span>\n </div>\n </div>\n\n <span class=\"po-switch-label po-clickable po-switch-label-{{ getLabelPosition() }}\" (click)=\"eventClick()\">\n {{ value === true ? labelOn : labelOff }}\n </span>\n </div>\n\n <po-field-container-bottom></po-field-container-bottom>\n</po-field-container>\n",
22632
22675
  changeDetection: ChangeDetectionStrategy.OnPush,
22633
22676
  providers: [
22634
22677
  {
@@ -22643,7 +22686,10 @@ PoSwitchComponent.ctorParameters = () => [
22643
22686
  { type: ChangeDetectorRef }
22644
22687
  ];
22645
22688
  PoSwitchComponent.propDecorators = {
22646
- switchContainer: [{ type: ViewChild, args: ['switchContainer', { static: true },] }]
22689
+ switchContainer: [{ type: ViewChild, args: ['switchContainer', { static: true },] }],
22690
+ labelPosition: [{ type: Input, args: ['p-label-position',] }],
22691
+ labelOff: [{ type: Input, args: ['p-label-off',] }],
22692
+ labelOn: [{ type: Input, args: ['p-label-on',] }]
22647
22693
  };
22648
22694
 
22649
22695
  /**
@@ -30409,7 +30455,7 @@ class PoPageHeaderComponent extends PoPageHeaderBaseComponent {
30409
30455
  PoPageHeaderComponent.decorators = [
30410
30456
  { type: Component, args: [{
30411
30457
  selector: 'po-page-header',
30412
- template: "<div class=\"po-page-header\">\n <!-- Breadcrumb -->\n <div class=\"po-page-header-breadcrumb\" *ngIf=\"breadcrumb && breadcrumb.items.length\">\n <po-breadcrumb\n [p-favorite-service]=\"breadcrumb.favorite\"\n [p-items]=\"breadcrumb.items\"\n [p-params-service]=\"breadcrumb.params\"\n >\n </po-breadcrumb>\n </div>\n\n <!-- Titulo -->\n <h1 class=\"po-page-header-title\" *ngIf=\"title\">\n {{ title }}\n </h1>\n\n <!-- Opera\u00E7\u00F5es -->\n <ng-content></ng-content>\n</div>\n"
30458
+ template: "<div class=\"po-page-header\">\n <!-- Breadcrumb -->\n <div class=\"po-page-header-breadcrumb\" *ngIf=\"breadcrumb && breadcrumb.items.length\">\n <po-breadcrumb\n [p-favorite-service]=\"breadcrumb.favorite\"\n [p-items]=\"breadcrumb.items\"\n [p-params-service]=\"breadcrumb.params\"\n >\n </po-breadcrumb>\n </div>\n\n <div class=\"po-pt-1\">\n <!-- Titulo -->\n <h1 class=\"po-page-header-title\" *ngIf=\"title\">\n {{ title }}\n </h1>\n\n <!-- Opera\u00E7\u00F5es -->\n <ng-content></ng-content>\n </div>\n</div>\n"
30413
30459
  },] }
30414
30460
  ];
30415
30461
 
@@ -31725,7 +31771,7 @@ class PoStepperCircleComponent {
31725
31771
  PoStepperCircleComponent.decorators = [
31726
31772
  { type: Component, args: [{
31727
31773
  selector: 'po-stepper-circle',
31728
- template: "<div\n class=\"po-stepper-circle\"\n [class.po-stepper-circle-with-icon]=\"icons\"\n [style.height.px]=\"size\"\n [style.width.px]=\"size\"\n [tabindex]=\"isDisabled ? -1 : 0\"\n>\n <span\n class=\"po-stepper-circle-content\"\n [class.po-icon]=\"icons\"\n [class.po-icon-exclamation]=\"icons && isError\"\n [class.po-icon-info]=\"icons && (isActive || isDefault || isDisabled)\"\n [class.po-icon-ok]=\"icons && isDone\"\n [class.po-stepper-circle-content-lg]=\"isLargeStep\"\n [class.po-stepper-circle-content-md]=\"isMediumStep\"\n >\n {{ !icons ? content : '' }}\n </span>\n</div>\n"
31774
+ template: "<div class=\"po-stepper-circle\" [style.height.px]=\"size\" [style.width.px]=\"size\" [tabindex]=\"isDisabled ? -1 : 0\">\n <span\n *ngIf=\"!isActive\"\n class=\"po-stepper-circle-content\"\n [class.po-icon]=\"icons || isDone\"\n [class.po-icon-exclamation]=\"icons && isError\"\n [class.po-icon-info]=\"icons && (isActive || isDefault || isDisabled)\"\n [class.po-icon-ok]=\"isDone\"\n [class.po-stepper-circle-content-lg]=\"isLargeStep\"\n [class.po-stepper-circle-content-md]=\"isMediumStep\"\n >\n {{ !icons && !isDone ? content : '' }}\n </span>\n\n <div *ngIf=\"isActive || isError\" class=\"po-stepper-circle-active\"></div>\n</div>\n"
31729
31775
  },] }
31730
31776
  ];
31731
31777
  PoStepperCircleComponent.propDecorators = {
@@ -32095,7 +32141,7 @@ class PoStepperComponent extends PoStepperBaseComponent {
32095
32141
  PoStepperComponent.decorators = [
32096
32142
  { type: Component, args: [{
32097
32143
  selector: 'po-stepper',
32098
- template: "<div class=\"po-stepper po-stepper-{{ orientation }}\">\n <div class=\"po-stepper-container\">\n <po-stepper-step\n *ngFor=\"let step of stepList; let index = index; trackBy: trackByFn\"\n class=\"po-stepper-step-position\"\n [p-circle-content]=\"index + 1\"\n [p-label]=\"step.label\"\n [p-orientation]=\"orientation\"\n [p-status]=\"step.status\"\n [p-step-icons]=\"stepIcons\"\n [p-step-size]=\"stepSize\"\n (p-activated)=\"onStepActive(step)\"\n (p-click)=\"changeStep(index, step)\"\n (p-enter)=\"changeStep(index, step)\"\n >\n </po-stepper-step>\n </div>\n\n <div *ngIf=\"usePoSteps\" class=\"po-stepper-content\">\n <ng-content></ng-content>\n </div>\n</div>\n"
32144
+ template: "<div class=\"po-stepper po-stepper-{{ orientation }}\">\n <div class=\"po-stepper-container\">\n <po-stepper-step\n *ngFor=\"let step of stepList; let index = index; trackBy: trackByFn\"\n class=\"po-stepper-step-position\"\n [p-circle-content]=\"index + 1\"\n [p-label]=\"step.label\"\n [p-orientation]=\"orientation\"\n [p-status]=\"step.status\"\n [p-step-icons]=\"stepIcons\"\n [p-step-size]=\"stepSize\"\n [p-next-status]=\"poSteps.get(index + 1)?.status\"\n (p-activated)=\"onStepActive(step)\"\n (p-click)=\"changeStep(index, step)\"\n (p-enter)=\"changeStep(index, step)\"\n >\n </po-stepper-step>\n </div>\n\n <div *ngIf=\"usePoSteps\" class=\"po-stepper-content\">\n <ng-content></ng-content>\n </div>\n</div>\n"
32099
32145
  },] }
32100
32146
  ];
32101
32147
  PoStepperComponent.ctorParameters = () => [
@@ -32194,11 +32240,11 @@ class PoStepperStepComponent {
32194
32240
  getStatusClass(status) {
32195
32241
  switch (status) {
32196
32242
  case PoStepperStatus.Active:
32197
- return 'po-stepper-step-active';
32243
+ return 'po-stepper-step-default';
32198
32244
  case PoStepperStatus.Disabled:
32199
32245
  return 'po-stepper-step-disabled';
32200
32246
  case PoStepperStatus.Done:
32201
- return 'po-stepper-step-done';
32247
+ return 'po-stepper-step-default';
32202
32248
  case PoStepperStatus.Error:
32203
32249
  return 'po-stepper-step-error';
32204
32250
  default:
@@ -32219,12 +32265,13 @@ class PoStepperStepComponent {
32219
32265
  PoStepperStepComponent.decorators = [
32220
32266
  { type: Component, args: [{
32221
32267
  selector: 'po-stepper-step',
32222
- template: "<div class=\"po-stepper-step\" [ngClass]=\"getStatusClass(status)\" (click)=\"onClick()\" (keydown.enter)=\"onEnter()\">\n <div class=\"po-stepper-step-container\" [style.width.px]=\"isVerticalOrientation ? stepSize : undefined\">\n <div\n [class.po-stepper-step-bar-top]=\"isVerticalOrientation\"\n [class.po-stepper-step-bar-left]=\"!isVerticalOrientation\"\n [style.margin-right.px]=\"marginHorizontalBar\"\n ></div>\n\n <po-stepper-circle [p-content]=\"circleContent\" [p-icons]=\"stepIcons\" [p-size]=\"stepSize\" [p-status]=\"status\">\n </po-stepper-circle>\n\n <div\n [class.po-stepper-step-bar-bottom]=\"isVerticalOrientation\"\n [class.po-stepper-step-bar-right]=\"!isVerticalOrientation\"\n [style.margin-left.px]=\"marginHorizontalBar\"\n ></div>\n </div>\n\n <po-stepper-label class=\"po-stepper-step-label-position\" [p-content]=\"label\"> </po-stepper-label>\n</div>\n"
32268
+ template: "<div class=\"po-stepper-step\" [ngClass]=\"getStatusClass(status)\" (click)=\"onClick()\" (keydown.enter)=\"onEnter()\">\n <div class=\"po-stepper-step-container\" [style.width.px]=\"isVerticalOrientation ? stepSize : undefined\">\n <div\n [class.po-stepper-step-bar-top]=\"isVerticalOrientation\"\n [class.po-stepper-step-bar-left]=\"!isVerticalOrientation\"\n [style.margin-right.px]=\"marginHorizontalBar\"\n ></div>\n\n <po-stepper-circle [p-content]=\"circleContent\" [p-icons]=\"stepIcons\" [p-size]=\"stepSize\" [p-status]=\"status\">\n </po-stepper-circle>\n\n <div\n [class.po-stepper-step-bar-bottom]=\"isVerticalOrientation\"\n [class.po-stepper-step-bar-right]=\"!isVerticalOrientation\"\n [class.po-stepper-step-dashed-border]=\"nextStatus === 'disabled' && !isVerticalOrientation\"\n [class.po-stepper-step-dashed-border-vertical]=\"nextStatus === 'disabled' && isVerticalOrientation\"\n [style.margin-left.px]=\"marginHorizontalBar\"\n ></div>\n </div>\n\n <po-stepper-label class=\"po-stepper-step-label-position\" [p-content]=\"label\"> </po-stepper-label>\n</div>\n"
32223
32269
  },] }
32224
32270
  ];
32225
32271
  PoStepperStepComponent.propDecorators = {
32226
32272
  circleContent: [{ type: Input, args: ['p-circle-content',] }],
32227
32273
  orientation: [{ type: Input, args: ['p-orientation',] }],
32274
+ nextStatus: [{ type: Input, args: ['p-next-status',] }],
32228
32275
  activated: [{ type: Output, args: ['p-activated',] }],
32229
32276
  click: [{ type: Output, args: ['p-click',] }],
32230
32277
  enter: [{ type: Output, args: ['p-enter',] }],
@@ -35017,5 +35064,5 @@ function initializeLanguageDefault(config, languageService) {
35017
35064
  * Generated bundle index. Do not edit.
35018
35065
  */
35019
35066
 
35020
- export { I18N_CONFIG, InputBoolean, InputRequired, PO_CONTROL_POSITIONS, PoAccordionComponent, PoAccordionItemComponent, PoAccordionModule, PoActiveOverlayModule, PoActiveOverlayService, PoAvatarComponent, PoAvatarModule, PoBreadcrumbComponent, PoBreadcrumbModule, PoButtonComponent, PoButtonGroupComponent, PoButtonGroupModule, PoButtonGroupToggle, PoButtonModule, PoCalendarComponent, PoCalendarMode, PoCalendarModule, PoChartComponent, PoChartModule, PoChartType, PoCheckboxComponent, PoCheckboxGroupComponent, PoCheckboxGroupModule, PoCleanComponent, 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, PoDropdownComponent, PoDropdownModule, PoDynamicFieldType, PoDynamicFormComponent, PoDynamicModule, PoDynamicViewComponent, PoEmailComponent, PoFieldModule, PoGaugeComponent, PoGaugeModule, PoGridComponent, PoGridModule, PoGuardsModule, PoHttpInterceptorModule, PoHttpInterceptorService, PoHttpRequestInterceptorService, PoHttpRequestModule, PoI18nModule, PoI18nPipe, PoI18nService, PoIconComponent, PoIconModule, PoInfoComponent, PoInfoModule, PoInfoOrientation, PoInputComponent, PoInterceptorsModule, PoLanguageModule, PoLanguageService, PoListViewComponent, PoListViewContentTemplateDirective, PoListViewDetailTemplateDirective, PoListViewModule, PoLoadingComponent, PoLoadingIconComponent, PoLoadingModule, PoLoadingOverlayComponent, PoLoginComponent, PoLookupComponent, PoLookupModalComponent, PoMenuComponent, PoMenuGlobalService, PoMenuHeaderTemplateDirective, PoMenuModule, PoMenuPanelComponent, PoMenuPanelModule, PoModalComponent, PoModalModule, PoModule, PoMultiselectComponent, PoMultiselectFilterMode, PoNavbarComponent, PoNavbarModule, PoNotificationModule, PoNotificationService, PoNumberComponent, PoPageDefaultComponent, PoPageDetailComponent, PoPageEditComponent, PoPageListComponent, PoPageModule, PoPageSlideComponent, PoPasswordComponent, PoPipesModule, PoPopoverComponent, PoPopoverModule, PoPopupComponent, PoPopupModule, PoProgressComponent, PoProgressModule, PoProgressStatus, PoRadioGroupComponent, PoRichTextComponent, PoSelectComponent, PoSelectOptionTemplateDirective, PoServicesModule, PoSlideComponent, PoSlideContentTemplateDirective, PoSlideModule, PoStepComponent, PoStepperComponent, PoStepperModule, PoStepperOrientation, PoStepperStatus, PoSwitchComponent, PoSwitchLabelPosition, PoTabComponent, PoTableCellTemplateDirective, PoTableColumnSortType, PoTableColumnTemplateDirective, PoTableComponent, PoTableModule, PoTableRowTemplateArrowDirection, PoTableRowTemplateDirective, PoTabsComponent, PoTabsModule, PoTagComponent, PoTagModule, PoTagOrientation, PoTagType, PoTextareaComponent, PoTimeModule, PoTimePipe, PoToasterOrientation, PoToasterType, PoToolbarComponent, PoToolbarModule, PoTooltipDirective, PoTooltipModule, PoTreeViewComponent, PoTreeViewModule, PoUploadComponent, PoUrlComponent, PoWidgetComponent, PoWidgetModule, initializeLanguageDefault, poDialogAlertLiteralsDefault, poDialogConfirmLiteralsDefault, poLanguageDefault, poLocaleDecimalSeparatorList, poLocaleDefault, poLocaleThousandSeparatorList, poLocales, returnPoI18nService, ɵ0, PoAccordionBaseComponent as ɵa, PoAccordionService as ɵb, PoChartMathsService as ɵba, PoChartAxisComponent as ɵbb, PoChartAxisPathComponent as ɵbc, PoChartAxisLabelComponent as ɵbd, PoChartBaseComponent as ɵbe, PoColorService as ɵbf, PoChartSvgContainerService as ɵbg, PoChartContainerComponent as ɵbh, PoChartGaugeComponent as ɵbi, PoChartCircular as ɵbj, PoChartDynamicTypeComponent as ɵbk, PoChartGaugeTextContentComponent as ɵbl, PoChartLegendComponent as ɵbm, PoChartLineComponent as ɵbn, PoChartPathComponent as ɵbo, PoChartPieComponent as ɵbp, PoChartCircularComponent as ɵbq, PoChartDonutComponent as ɵbr, PoChartSeriesPointComponent as ɵbs, PoChartBarComponent as ɵbt, PoChartBarBaseComponent as ɵbu, PoChartColumnComponent as ɵbv, PoChartBarPathComponent as ɵbw, PoChartCircularPathComponent as ɵbx, PoChartCircularLabelComponent as ɵby, PoChartTooltipDirective as ɵbz, PoAccordionItemBodyComponent as ɵc, PoResizeObserverDirective as ɵca, PoContainerBaseComponent as ɵcb, PoDisclaimerBaseComponent as ɵcc, PoDisclaimerGroupBaseComponent as ɵcd, PoDisclaimerRemoveComponent as ɵce, PoDividerBaseComponent as ɵcf, PoPopupBaseComponent as ɵcg, PoDropdownBaseComponent as ɵch, PoInfoBaseComponent as ɵci, PoCleanModule as ɵcj, PoCleanBaseComponent as ɵck, PoFieldContainerModule as ɵcl, PoFieldContainerBottomComponent as ɵcm, PoFieldContainerComponent as ɵcn, PoCheckboxGroupBaseComponent as ɵco, PoDatepickerBaseComponent as ɵcp, PoModalBaseComponent as ɵcq, PoProgressBaseComponent as ɵcr, PoProgressBarComponent as ɵcs, PoI18nBasePipe as ɵct, PoDialogBaseService as ɵcu, PoToasterComponent as ɵcv, PoToasterBaseComponent as ɵcw, PoPopoverBaseComponent as ɵcx, PoTableBaseComponent as ɵcy, PoTableService as ɵcz, PoAccordionItemHeaderComponent as ɵd, PoTableColumnIconComponent as ɵda, PoTableColumnLabelComponent as ɵdb, PoTableColumnLinkComponent as ɵdc, PoTableColumnManagerComponent as ɵdd, PoTableDetailComponent as ɵde, PoTableIconComponent as ɵdf, PoTableShowSubtitleComponent as ɵdg, PoTableSubtitleCircleComponent as ɵdh, PoTableSubtitleFooterComponent as ɵdi, PoCheckboxBaseComponent as ɵdj, PoComboBaseComponent as ɵdk, PoComboFilterService as ɵdl, PoInputBaseComponent as ɵdm, PoDatepickerRangeBaseComponent as ɵdn, PoInputGeneric as ɵdo, PoLookupBaseComponent as ɵdp, PoLookupFilterService as ɵdq, PoLookupModalService as ɵdr, PoLookupModalBaseComponent as ɵds, PoMultiselectBaseComponent as ɵdt, PoMultiselectFilterService as ɵdu, PoNumberBaseComponent as ɵdv, PoRadioGroupBaseComponent as ɵdw, PoRichTextBaseComponent as ɵdx, PoRichTextService as ɵdy, PoRichTextBodyComponent as ɵdz, PoAvatarBaseComponent as ɵe, PoSelectBaseComponent as ɵea, PoSwitchBaseComponent as ɵeb, PoTextareaBaseComponent as ɵec, PoUploadBaseComponent as ɵed, PoUploadService as ɵee, PoUploadBaseService as ɵef, PoUploadDragDropComponent as ɵeg, PoUploadDragDropAreaComponent as ɵeh, PoNotificationBaseService as ɵei, PoMultiselectDropdownComponent as ɵej, PoMultiselectItemComponent as ɵek, PoMultiselectSearchComponent as ɵel, PoRichTextImageModalComponent as ɵem, PoRichTextLinkModalComponent as ɵen, PoRichTextToolbarComponent as ɵeo, PoUploadDragDropDirective as ɵep, PoUploadDragDropAreaOverlayComponent as ɵeq, PoUploadFileRestrictionsComponent as ɵer, PoTagBaseComponent as ɵes, PoDynamicFormBaseComponent as ɵet, PoDynamicFormLoadService as ɵeu, PoDynamicFormOperation as ɵev, PoDynamicFormValidationService as ɵew, PoDynamicFormFieldsComponent as ɵex, PoDynamicFormFieldsBaseComponent as ɵey, PoDynamicViewBaseComponent as ɵez, PoBreadcrumbBaseComponent as ɵf, PoDynamicViewService as ɵfa, PoGaugeBaseComponent as ɵfb, PoGaugeTitleComponent as ɵfc, PoGaugeLegendComponent as ɵfd, PoGaugeSvgComponent as ɵfe, PoGaugePathComponent as ɵff, PoGaugeDescriptionComponent as ɵfg, PoGaugePointerComponent as ɵfh, PoGridCellActionComponent as ɵfi, PoGridCellComponent as ɵfj, PoGridHeadComponent as ɵfk, PoListViewBaseComponent as ɵfl, PoBadgeModule as ɵfm, PoBadgeComponent as ɵfn, PoBadgeBaseComponent as ɵfo, PoMenuBaseComponent as ɵfp, PoMenuService as ɵfq, PoMenuItemsService as ɵfr, PoMenuFilterComponent as ɵfs, PoMenuItemComponent as ɵft, PoMenuPanelBaseComponent as ɵfu, PoMenuPanelItemsService as ɵfv, PoMenuPanelItemComponent as ɵfw, PoNavbarActionsModule as ɵfx, PoNavbarActionComponent as ɵfy, PoNavbarActionPopupComponent as ɵfz, PoBreadcrumbDropdownComponent as ɵg, PoNavbarActionsComponent as ɵga, PoNavbarItemsModule as ɵgb, PoNavbarItemComponent as ɵgc, PoNavbarItemsComponent as ɵgd, PoNavbarItemNavigationModule as ɵge, PoNavbarItemNavigationComponent as ɵgf, PoNavbarItemNavigationIconComponent as ɵgg, PoNavbarBaseComponent as ɵgh, PoNavbarLogoComponent as ɵgi, PoPageComponent as ɵgj, PoPageBaseComponent as ɵgk, PoPageContentComponent as ɵgl, PoPageContentBaseComponent as ɵgm, PoPageDefaultBaseComponent as ɵgn, PoPageDetailBaseComponent as ɵgo, PoPageEditBaseComponent as ɵgp, PoPageHeaderComponent as ɵgq, PoPageHeaderBaseComponent as ɵgr, PoPageListBaseComponent as ɵgs, PoPageSlideBaseComponent as ɵgt, PoSlideCirclesComponent as ɵgu, PoSlideBaseComponent as ɵgv, PoSlideItemComponent as ɵgw, PoSlideControlComponent as ɵgx, PoStepperCircleComponent as ɵgy, PoStepperBaseComponent as ɵgz, PoBreadcrumbFavoriteComponent as ɵh, PoStepperLabelComponent as ɵha, PoStepperStepComponent as ɵhb, PoTabButtonComponent as ɵhc, PoTabBaseComponent as ɵhd, PoTabDropdownComponent as ɵhe, PoTabsBaseComponent as ɵhf, PoToolbarActionsComponent as ɵhg, PoToolbarBaseComponent as ɵhh, PoToolbarNotificationComponent as ɵhi, PoToolbarProfileComponent as ɵhj, PoTreeViewBaseComponent as ɵhk, PoTreeViewService as ɵhl, PoTreeViewItemComponent as ɵhm, PoTreeViewItemHeaderComponent as ɵhn, PoWidgetBaseComponent as ɵho, PoHttpInterceptorDetailComponent as ɵhp, PoHttpInterceptorBaseService as ɵhq, PoHttpRequesControltService as ɵhr, PoI18nBaseService as ɵhs, PoBreadcrumbFavoriteService as ɵi, PoBreadcrumbItemComponent as ɵj, PoLoadingBaseComponent as ɵk, PoLoadingOverlayBaseComponent as ɵl, PoButtonBaseComponent as ɵm, InputBoolean as ɵn, PoTooltipBaseDirective as ɵo, PoTooltipControlPositionService as ɵp, PoControlPositionService as ɵq, PoButtonGroupBaseComponent as ɵr, PoCalendarBaseComponent as ɵs, PoDateService as ɵt, PoCalendarHeaderComponent as ɵu, PoCalendarWrapperComponent as ɵv, PoCalendarService as ɵw, PoCalendarLangService as ɵx, PoChartAreaComponent as ɵy, PoChartLineBaseComponent as ɵz };
35067
+ export { I18N_CONFIG, InputBoolean, InputRequired, PO_CONTROL_POSITIONS, PoAccordionComponent, PoAccordionItemComponent, PoAccordionModule, PoActiveOverlayModule, PoActiveOverlayService, PoAvatarComponent, PoAvatarModule, PoBreadcrumbComponent, PoBreadcrumbModule, PoButtonComponent, PoButtonGroupComponent, PoButtonGroupModule, PoButtonGroupToggle, PoButtonModule, PoCalendarComponent, PoCalendarMode, PoCalendarModule, PoChartComponent, PoChartModule, PoChartType, PoCheckboxComponent, PoCheckboxGroupComponent, PoCheckboxGroupModule, PoCleanComponent, 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, PoDropdownComponent, PoDropdownModule, PoDynamicFieldType, PoDynamicFormComponent, PoDynamicModule, PoDynamicViewComponent, PoEmailComponent, PoFieldModule, PoGaugeComponent, PoGaugeModule, PoGridComponent, PoGridModule, PoGuardsModule, PoHttpInterceptorModule, PoHttpInterceptorService, PoHttpRequestInterceptorService, PoHttpRequestModule, PoI18nModule, PoI18nPipe, PoI18nService, PoIconComponent, PoIconModule, PoInfoComponent, PoInfoModule, PoInfoOrientation, PoInputComponent, PoInterceptorsModule, PoLanguageModule, PoLanguageService, PoListViewComponent, PoListViewContentTemplateDirective, PoListViewDetailTemplateDirective, PoListViewModule, PoLoadingComponent, PoLoadingIconComponent, PoLoadingModule, PoLoadingOverlayComponent, PoLoginComponent, PoLookupComponent, PoLookupModalComponent, PoMenuComponent, PoMenuGlobalService, PoMenuHeaderTemplateDirective, PoMenuModule, PoMenuPanelComponent, PoMenuPanelModule, PoModalComponent, PoModalModule, PoModule, PoMultiselectComponent, PoMultiselectFilterMode, PoNavbarComponent, PoNavbarModule, PoNotificationModule, PoNotificationService, PoNumberComponent, PoPageDefaultComponent, PoPageDetailComponent, PoPageEditComponent, PoPageListComponent, PoPageModule, PoPageSlideComponent, PoPasswordComponent, PoPipesModule, PoPopoverComponent, PoPopoverModule, PoPopupComponent, PoPopupModule, PoProgressComponent, PoProgressModule, PoProgressStatus, PoRadioGroupComponent, PoRichTextComponent, PoSelectComponent, PoSelectOptionTemplateDirective, PoServicesModule, PoSlideComponent, PoSlideContentTemplateDirective, PoSlideModule, PoStepComponent, PoStepperComponent, PoStepperModule, PoStepperOrientation, PoStepperStatus, PoSwitchComponent, PoSwitchLabelPosition, PoTabComponent, PoTableCellTemplateDirective, PoTableColumnSortType, PoTableColumnTemplateDirective, PoTableComponent, PoTableModule, PoTableRowTemplateArrowDirection, PoTableRowTemplateDirective, PoTabsComponent, PoTabsModule, PoTagComponent, PoTagModule, PoTagOrientation, PoTagType, PoTextareaComponent, PoTimeModule, PoTimePipe, PoToasterOrientation, PoToasterType, PoToolbarComponent, PoToolbarModule, PoTooltipDirective, PoTooltipModule, PoTreeViewComponent, PoTreeViewModule, PoUploadComponent, PoUrlComponent, PoWidgetComponent, PoWidgetModule, initializeLanguageDefault, poDialogAlertLiteralsDefault, poDialogConfirmLiteralsDefault, poLanguageDefault, poLocaleDecimalSeparatorList, poLocaleDefault, poLocaleThousandSeparatorList, poLocales, returnPoI18nService, ɵ0, PoAccordionBaseComponent as ɵa, PoAccordionService as ɵb, PoChartMathsService as ɵba, PoChartAxisComponent as ɵbb, PoChartAxisPathComponent as ɵbc, PoChartAxisLabelComponent as ɵbd, PoChartBaseComponent as ɵbe, PoColorService as ɵbf, PoChartSvgContainerService as ɵbg, PoChartContainerComponent as ɵbh, PoChartGaugeComponent as ɵbi, PoChartCircular as ɵbj, PoChartDynamicTypeComponent as ɵbk, PoChartGaugeTextContentComponent as ɵbl, PoChartLegendComponent as ɵbm, PoChartLineComponent as ɵbn, PoChartPathComponent as ɵbo, PoChartPieComponent as ɵbp, PoChartCircularComponent as ɵbq, PoChartDonutComponent as ɵbr, PoChartSeriesPointComponent as ɵbs, PoChartBarComponent as ɵbt, PoChartBarBaseComponent as ɵbu, PoChartColumnComponent as ɵbv, PoChartBarPathComponent as ɵbw, PoChartCircularPathComponent as ɵbx, PoChartCircularLabelComponent as ɵby, PoChartTooltipDirective as ɵbz, PoAccordionItemBodyComponent as ɵc, PoResizeObserverDirective as ɵca, PoContainerBaseComponent as ɵcb, PoDisclaimerBaseComponent as ɵcc, PoDisclaimerGroupBaseComponent as ɵcd, PoDisclaimerRemoveComponent as ɵce, PoDividerBaseComponent as ɵcf, PoPopupBaseComponent as ɵcg, PoDropdownBaseComponent as ɵch, PoInfoBaseComponent as ɵci, PoCleanModule as ɵcj, PoCleanBaseComponent as ɵck, PoFieldContainerModule as ɵcl, PoFieldContainerBottomComponent as ɵcm, PoFieldContainerComponent as ɵcn, PoCheckboxGroupBaseComponent as ɵco, PoDatepickerBaseComponent as ɵcp, PoModalBaseComponent as ɵcq, PoProgressBaseComponent as ɵcr, PoProgressBarComponent as ɵcs, PoI18nBasePipe as ɵct, PoDialogBaseService as ɵcu, PoToasterComponent as ɵcv, PoToasterBaseComponent as ɵcw, PoPopoverBaseComponent as ɵcx, PoTableBaseComponent as ɵcy, PoTableService as ɵcz, PoAccordionItemHeaderComponent as ɵd, PoTableColumnIconComponent as ɵda, PoTableColumnLabelComponent as ɵdb, PoTableColumnLinkComponent as ɵdc, PoTableColumnManagerComponent as ɵdd, PoTableDetailComponent as ɵde, PoTableIconComponent as ɵdf, PoTableShowSubtitleComponent as ɵdg, PoTableSubtitleCircleComponent as ɵdh, PoTableSubtitleFooterComponent as ɵdi, PoCheckboxBaseComponent as ɵdj, PoComboBaseComponent as ɵdk, PoComboFilterService as ɵdl, PoInputBaseComponent as ɵdm, PoDatepickerRangeBaseComponent as ɵdn, PoInputGeneric as ɵdo, PoLookupBaseComponent as ɵdp, PoLookupFilterService as ɵdq, PoLookupModalService as ɵdr, PoLookupModalBaseComponent as ɵds, PoMultiselectBaseComponent as ɵdt, PoMultiselectFilterService as ɵdu, PoNumberBaseComponent as ɵdv, PoRadioGroupBaseComponent as ɵdw, PoRichTextBaseComponent as ɵdx, PoRichTextService as ɵdy, PoRichTextBodyComponent as ɵdz, PoAvatarBaseComponent as ɵe, PoSelectBaseComponent as ɵea, PoFieldModel as ɵeb, PoTextareaBaseComponent as ɵec, PoUploadBaseComponent as ɵed, PoUploadService as ɵee, PoUploadBaseService as ɵef, PoUploadDragDropComponent as ɵeg, PoUploadDragDropAreaComponent as ɵeh, PoNotificationBaseService as ɵei, PoMultiselectDropdownComponent as ɵej, PoMultiselectItemComponent as ɵek, PoMultiselectSearchComponent as ɵel, PoRichTextImageModalComponent as ɵem, PoRichTextLinkModalComponent as ɵen, PoRichTextToolbarComponent as ɵeo, PoUploadDragDropDirective as ɵep, PoUploadDragDropAreaOverlayComponent as ɵeq, PoUploadFileRestrictionsComponent as ɵer, PoTagBaseComponent as ɵes, PoDynamicFormBaseComponent as ɵet, PoDynamicFormLoadService as ɵeu, PoDynamicFormOperation as ɵev, PoDynamicFormValidationService as ɵew, PoDynamicFormFieldsComponent as ɵex, PoDynamicFormFieldsBaseComponent as ɵey, PoDynamicViewBaseComponent as ɵez, PoBreadcrumbBaseComponent as ɵf, PoDynamicViewService as ɵfa, PoGaugeBaseComponent as ɵfb, PoGaugeTitleComponent as ɵfc, PoGaugeLegendComponent as ɵfd, PoGaugeSvgComponent as ɵfe, PoGaugePathComponent as ɵff, PoGaugeDescriptionComponent as ɵfg, PoGaugePointerComponent as ɵfh, PoGridCellActionComponent as ɵfi, PoGridCellComponent as ɵfj, PoGridHeadComponent as ɵfk, PoListViewBaseComponent as ɵfl, PoBadgeModule as ɵfm, PoBadgeComponent as ɵfn, PoBadgeBaseComponent as ɵfo, PoMenuBaseComponent as ɵfp, PoMenuService as ɵfq, PoMenuItemsService as ɵfr, PoMenuFilterComponent as ɵfs, PoMenuItemComponent as ɵft, PoMenuPanelBaseComponent as ɵfu, PoMenuPanelItemsService as ɵfv, PoMenuPanelItemComponent as ɵfw, PoNavbarActionsModule as ɵfx, PoNavbarActionComponent as ɵfy, PoNavbarActionPopupComponent as ɵfz, PoBreadcrumbDropdownComponent as ɵg, PoNavbarActionsComponent as ɵga, PoNavbarItemsModule as ɵgb, PoNavbarItemComponent as ɵgc, PoNavbarItemsComponent as ɵgd, PoNavbarItemNavigationModule as ɵge, PoNavbarItemNavigationComponent as ɵgf, PoNavbarItemNavigationIconComponent as ɵgg, PoNavbarBaseComponent as ɵgh, PoNavbarLogoComponent as ɵgi, PoPageComponent as ɵgj, PoPageBaseComponent as ɵgk, PoPageContentComponent as ɵgl, PoPageContentBaseComponent as ɵgm, PoPageDefaultBaseComponent as ɵgn, PoPageDetailBaseComponent as ɵgo, PoPageEditBaseComponent as ɵgp, PoPageHeaderComponent as ɵgq, PoPageHeaderBaseComponent as ɵgr, PoPageListBaseComponent as ɵgs, PoPageSlideBaseComponent as ɵgt, PoSlideCirclesComponent as ɵgu, PoSlideBaseComponent as ɵgv, PoSlideItemComponent as ɵgw, PoSlideControlComponent as ɵgx, PoStepperCircleComponent as ɵgy, PoStepperBaseComponent as ɵgz, PoBreadcrumbFavoriteComponent as ɵh, PoStepperLabelComponent as ɵha, PoStepperStepComponent as ɵhb, PoTabButtonComponent as ɵhc, PoTabBaseComponent as ɵhd, PoTabDropdownComponent as ɵhe, PoTabsBaseComponent as ɵhf, PoToolbarActionsComponent as ɵhg, PoToolbarBaseComponent as ɵhh, PoToolbarNotificationComponent as ɵhi, PoToolbarProfileComponent as ɵhj, PoTreeViewBaseComponent as ɵhk, PoTreeViewService as ɵhl, PoTreeViewItemComponent as ɵhm, PoTreeViewItemHeaderComponent as ɵhn, PoWidgetBaseComponent as ɵho, PoHttpInterceptorDetailComponent as ɵhp, PoHttpInterceptorBaseService as ɵhq, PoHttpRequesControltService as ɵhr, PoI18nBaseService as ɵhs, PoBreadcrumbFavoriteService as ɵi, PoBreadcrumbItemComponent as ɵj, PoLoadingBaseComponent as ɵk, PoLoadingOverlayBaseComponent as ɵl, PoButtonBaseComponent as ɵm, InputBoolean as ɵn, PoTooltipBaseDirective as ɵo, PoTooltipControlPositionService as ɵp, PoControlPositionService as ɵq, PoButtonGroupBaseComponent as ɵr, PoCalendarBaseComponent as ɵs, PoDateService as ɵt, PoCalendarHeaderComponent as ɵu, PoCalendarWrapperComponent as ɵv, PoCalendarService as ɵw, PoCalendarLangService as ɵx, PoChartAreaComponent as ɵy, PoChartLineBaseComponent as ɵz };
35021
35068
  //# sourceMappingURL=po-ui-ng-components.js.map