@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.
Files changed (32) hide show
  1. 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
  2. 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
  3. package/fesm2022/po-ui-ng-components.mjs +1683 -1266
  4. package/fesm2022/po-ui-ng-components.mjs.map +1 -1
  5. package/lib/components/po-dynamic/po-dynamic-form/interfaces/po-dynamic-form-field.interface.d.ts +28 -0
  6. package/lib/components/po-field/index.d.ts +3 -0
  7. package/lib/components/po-field/po-decimal/interfaces/po-decimal-format-parsed.interface.d.ts +16 -0
  8. package/lib/components/po-field/po-decimal/interfaces/po-decimal-format-result.interface.d.ts +12 -0
  9. package/lib/components/po-field/po-decimal/po-decimal.component.d.ts +42 -1
  10. package/lib/components/po-field/po-decimal/utils/po-decimal-format.util.d.ts +47 -0
  11. package/lib/pipes/index.d.ts +1 -0
  12. package/lib/pipes/po-decimal/index.d.ts +2 -0
  13. package/lib/pipes/po-decimal/po-decimal.module.d.ts +2 -0
  14. package/lib/pipes/po-decimal/po-decimal.pipe.d.ts +15 -0
  15. package/package.json +4 -4
  16. package/po-ui-ng-components-21.29.0.tgz +0 -0
  17. package/schematics/ng-add/index.js +1 -1
  18. package/schematics/ng-update/v14/index.js +1 -1
  19. package/schematics/ng-update/v15/index.js +1 -1
  20. package/schematics/ng-update/v16/index.js +1 -1
  21. package/schematics/ng-update/v17/index.js +1 -1
  22. package/schematics/ng-update/v18/index.js +2 -2
  23. package/schematics/ng-update/v19/index.js +2 -2
  24. package/schematics/ng-update/v2/index.js +1 -1
  25. package/schematics/ng-update/v20/index.js +2 -2
  26. package/schematics/ng-update/v21/index.js +1 -1
  27. package/schematics/ng-update/v3/index.js +1 -1
  28. package/schematics/ng-update/v4/index.js +1 -1
  29. package/schematics/ng-update/v5/index.js +1 -1
  30. package/schematics/ng-update/v6/index.js +1 -1
  31. package/types/po-ui-ng-components.d.ts +171 -4
  32. package/po-ui-ng-components-21.28.0.tgz +0 -0
@@ -117,6 +117,8 @@ export interface PoDynamicFormField extends PoDynamicField {
117
117
  *
118
118
  * **Componente compatível:** `po-input`.
119
119
  * > também é atribuído ao utilizar a propriedade `type: time`.
120
+ *
121
+ * > Incompatível com `po-decimal`.
120
122
  */
121
123
  mask?: string;
122
124
  /**
@@ -167,17 +169,23 @@ export interface PoDynamicFormField extends PoDynamicField {
167
169
  /** Quantidade máxima de casas decimais.
168
170
  *
169
171
  * > Esta propriedade só pode ser utilizada quando o `type` for *currency* ou *decimal*.
172
+ *
173
+ * > Quando utilizado com `displayFormat`, será respeitado o valor **mais restritivo** entre esta propriedade e o número de casas decimais definido no formato.
170
174
  */
171
175
  decimalsLength?: number;
172
176
  /** Quantidade máxima de dígitos antes do separador decimal. O valor máximo permitido é 13
173
177
  *
174
178
  * > Esta propriedade só pode ser utilizada quando o `type` for *currency* ou *decimal*.
179
+ *
180
+ * > Quando utilizado com `displayFormat`, será respeitado o valor **mais restritivo** entre esta propriedade e o número de dígitos inteiros definido no formato.
175
181
  */
176
182
  thousandMaxlength?: number;
177
183
  /**
178
184
  * Regex para validação do campo.
179
185
  *
180
186
  * **Componentes compatíveis:** `po-input`, `po-password`.
187
+ *
188
+ * > Incompatível com `po-decimal`.
181
189
  * */
182
190
  pattern?: string;
183
191
  /**
@@ -379,6 +387,26 @@ export interface PoDynamicFormField extends PoDynamicField {
379
387
  * **Componentes compatíveis:** `po-datepicker`, `po-datetimepicker`, `po-timepicker`, `po-lookup`.
380
388
  */
381
389
  format?: string | Array<string>;
390
+ /**
391
+ * Define uma máscara de formatação numérica avançada para o campo.
392
+ *
393
+ * Simbologia suportada:
394
+ * - `9`: Dígito obrigatório (preenche com zero à esquerda no blur);
395
+ * - `>`: Supressão de zero à esquerda (dígito não obrigatório);
396
+ * - `<`: Decimal flutuante, supressão de zeros à direita (dígito não obrigatório);
397
+ * - `.`: Separador decimal (convertido conforme locale);
398
+ * - `,`: Separador de milhar/grupo (convertido conforme locale);
399
+ * - `-`: Sinal negativo (deve ser o primeiro caractere do formato).
400
+ *
401
+ * > Quando utilizado com `decimalsLength` ou `thousandMaxlength`, será respeitado o valor **mais restritivo** entre a propriedade e o formato.
402
+ *
403
+ * Exemplos: `'>>>,>>>,>>9.99'`, `'->>9.99'`, `'999.9'`
404
+ *
405
+ * > Esta propriedade só pode ser utilizada quando o `type` for *currency* ou *decimal*.
406
+ *
407
+ * **Componente compatível:** `po-decimal`.
408
+ */
409
+ displayFormat?: string;
382
410
  /**
383
411
  * Nome da propriedade do objeto retornado que será utilizado como descrição do campo.
384
412
  *
@@ -21,6 +21,9 @@ export * from './po-datepicker-range/po-datepicker-range.component';
21
21
  export * from './po-datetimepicker/po-datetimepicker.component';
22
22
  export * from './po-datetimepicker/po-datetimepicker.module';
23
23
  export * from './po-decimal/po-decimal.component';
24
+ export * from './po-decimal/utils/po-decimal-format.util';
25
+ export * from './po-decimal/interfaces/po-decimal-format-parsed.interface';
26
+ export * from './po-decimal/interfaces/po-decimal-format-result.interface';
24
27
  export * from './po-email/po-email.component';
25
28
  export * from './po-input/po-input.component';
26
29
  export * from './po-input/po-mask';
@@ -0,0 +1,16 @@
1
+ /**
2
+ * @docsPrivate
3
+ *
4
+ * @description
5
+ *
6
+ * Resultado do parsing de uma string de formato numérico.
7
+ */
8
+ export interface PoDecimalFormatParsed {
9
+ integerFormat: Array<string>;
10
+ decimalFormat: Array<string>;
11
+ groupSeparatorPositions: Array<number>;
12
+ allowNegative: boolean;
13
+ integerDigitCount: number;
14
+ decimalDigitCount: number;
15
+ originalFormat: string;
16
+ }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @docsPrivate
3
+ *
4
+ * @description
5
+ *
6
+ * Resultado da aplicação do formato numérico a um valor.
7
+ */
8
+ export interface PoDecimalFormatResult {
9
+ viewValue: string;
10
+ modelValue: number | undefined;
11
+ isValid: boolean;
12
+ }
@@ -1,4 +1,4 @@
1
- import { AfterViewInit, ElementRef, OnDestroy, OnInit, OnChanges, SimpleChanges } from '@angular/core';
1
+ import { AfterViewInit, ElementRef, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
2
2
  import { AbstractControl } from '@angular/forms';
3
3
  import { PoInputBaseComponent } from '../po-input/po-input-base.component';
4
4
  /**
@@ -39,6 +39,11 @@ import { PoInputBaseComponent } from '../po-input/po-input-base.component';
39
39
  * <file name="sample-po-decimal-hourly-wage-reactive-form/sample-po-decimal-hourly-wage-reactive-form.component.html"> </file>
40
40
  * <file name="sample-po-decimal-hourly-wage-reactive-form/sample-po-decimal-hourly-wage-reactive-form.component.ts"> </file>
41
41
  * </example>
42
+ *
43
+ * <example name="po-decimal-display-format" title="PO Decimal - Display Format">
44
+ * <file name="sample-po-decimal-display-format/sample-po-decimal-display-format.component.html"> </file>
45
+ * <file name="sample-po-decimal-display-format/sample-po-decimal-display-format.component.ts"> </file>
46
+ * </example>
42
47
  */
43
48
  export declare class PoDecimalComponent extends PoInputBaseComponent implements AfterViewInit, OnInit, OnDestroy, OnChanges {
44
49
  private readonly el;
@@ -72,6 +77,7 @@ export declare class PoDecimalComponent extends PoInputBaseComponent implements
72
77
  * - A soma total de `p-decimals-length` com `p-thousand-maxlength` limita-se à 16;
73
78
  * - Esta propriedade sobrepõe apenas o valor **padrão** de `p-thousand-maxlength`;
74
79
  * - Caso `p-thousand-maxlength` tenha um valor definido, esta propriedade poderá receber apenas o valor restante do limite total (16).
80
+ * - 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.
75
81
  *
76
82
  * @default `2`
77
83
  */
@@ -88,6 +94,8 @@ export declare class PoDecimalComponent extends PoInputBaseComponent implements
88
94
  * - O valor máximo permitido é 13;
89
95
  * - A soma total de `p-decimals-length` com `p-thousand-maxlength` limita-se à 16;
90
96
  * - Esta propriedade sobrepõe o valor definido em `p-decimals-length`.
97
+ * - 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
98
+ * formato.
91
99
  *
92
100
  * @default `13`
93
101
  */
@@ -105,6 +113,31 @@ export declare class PoDecimalComponent extends PoInputBaseComponent implements
105
113
  *
106
114
  */
107
115
  set locale(locale: string);
116
+ /**
117
+ * @optional
118
+ *
119
+ * @description
120
+ *
121
+ * Define uma máscara de formatação numérica avançada para o campo.
122
+ *
123
+ * Simbologia suportada:
124
+ * - `9`: Dígito obrigatório (preenche com zero à esquerda no blur);
125
+ * - `>`: Supressão de zero à esquerda (dígito não obrigatório);
126
+ * - `<`: Decimal flutuante, supressão de zeros à direita (dígito não obrigatório);
127
+ * - `,` e `.`: Separadores de milhar/grupo e decimal (convertidos conforme `p-locale`);
128
+ * - `-`: Sinal negativo (deve ser o primeiro caractere do formato).
129
+ *
130
+ * > **Importante:**
131
+ * - A formatação via `p-display-format` é apenas visual; o valor do model é sempre o número puro.
132
+ * - 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).
133
+ * - Quando `p-decimals-length` ou `p-thousand-maxlength` são definidos, será respeitado o valor **mais restritivo** entre o formato e a propriedade.
134
+ * - Incompatível com `p-mask`, `p-mask-format-model`, `p-mask-no-length-validation` e `p-pattern`.
135
+ *
136
+ * Exemplos de formato: `>>>,>>>,>>9.99`, `->>,>>9.99`, `999.9`, `>>>,>>9.9<<<<<<`
137
+ *
138
+ */
139
+ readonly displayFormat: import("@angular/core").InputSignal<string>;
140
+ private readonly formatParsed;
108
141
  /**
109
142
  * @optional
110
143
  *
@@ -152,6 +185,14 @@ export declare class PoDecimalComponent extends PoInputBaseComponent implements
152
185
  hideAdditionalHelp: boolean;
153
186
  helperSettings?: any;
154
187
  };
188
+ private applyFormatOnBlur;
189
+ private resolveViewValue;
190
+ private applyFormatOnBlurAndSetView;
191
+ private formatMaskWithAblPositions;
192
+ private validateFormatOnInput;
193
+ private getEffectiveFormatParsed;
194
+ private getModelValueFromView;
195
+ private refreshOnPropertyChange;
155
196
  private containsComma;
156
197
  private containsMoreThanOneDecimalSeparator;
157
198
  private controlChangeEmitter;
@@ -0,0 +1,47 @@
1
+ /**
2
+ * Formatação numérica avançada para o po-decimal.
3
+ *
4
+ * Simbologia suportada:
5
+ * 9 - Dígito obrigatório (preenche com zero)
6
+ * > - Supressão de zero à esquerda
7
+ * < - Supressão de zeros à direita (decimal flutuante)
8
+ * , - Separador de grupo (convertido conforme locale)
9
+ * . - Separador decimal (convertido conforme locale)
10
+ * - - Sinal negativo (primeiro caractere)
11
+ */
12
+ import { PoDecimalFormatParsed } from '../interfaces/po-decimal-format-parsed.interface';
13
+ import { PoDecimalFormatResult } from '../interfaces/po-decimal-format-result.interface';
14
+ export { PoDecimalFormatParsed } from '../interfaces/po-decimal-format-parsed.interface';
15
+ export { PoDecimalFormatResult } from '../interfaces/po-decimal-format-result.interface';
16
+ /**
17
+ * Aplica o formato ao valor numérico, gerando a representação visual.
18
+ *
19
+ * @returns viewValue formatado + flag de validação (overflow = isValid false)
20
+ */
21
+ export declare function applyDecimalFormat(value: number | undefined | null, parsed: PoDecimalFormatParsed, decimalSeparator: string, thousandSeparator: string): PoDecimalFormatResult;
22
+ /**
23
+ * Deriva os limites de dígitos do formato para compatibilidade com p-decimals-length / p-thousand-maxlength.
24
+ */
25
+ export declare function getFormatLimits(parsed: PoDecimalFormatParsed): {
26
+ decimalsLength: number;
27
+ thousandMaxlength: number;
28
+ } | null;
29
+ /**
30
+ * Faz o parsing da string de formato numérico.
31
+ *
32
+ * Regra: '.' no formato = separador decimal, ',' = separador de grupo.
33
+ * Sem '.' = formato puramente inteiro.
34
+ */
35
+ export declare function parseDecimalFormat(format: string): PoDecimalFormatParsed;
36
+ /**
37
+ * Valida se o valor digitado cabe no formato (usado durante input em tempo real).
38
+ */
39
+ export declare function validateAgainstFormat(rawValue: string, parsed: PoDecimalFormatParsed, decimalSeparator: string): boolean;
40
+ /**
41
+ * Insere separadores de grupo baseando-se nas posições do formato original,
42
+ * calculando da direita para a esquerda. Funciona tanto com formato truncado
43
+ * (quando p-thousand-maxlength restringe) quanto em tamanho completo.
44
+ *
45
+ * Aceita digits como Array<string> (blur, com placeholders) ou string (digitação).
46
+ */
47
+ export declare function insertGroupSeparatorsFromRight(digits: Array<string> | string, parsed: PoDecimalFormatParsed, thousandSeparator: string): string;
@@ -1,2 +1,3 @@
1
1
  export * from './pipes.module';
2
2
  export * from './po-time/index';
3
+ export * from './po-decimal/index';
@@ -0,0 +1,2 @@
1
+ export * from './po-decimal.pipe';
2
+ export * from './po-decimal.module';
@@ -0,0 +1,2 @@
1
+ export declare class PoDecimalFormatModule {
2
+ }
@@ -0,0 +1,15 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ /**
3
+ * Aplica máscaras de formatação numérica avançada a valores numéricos.
4
+ *
5
+ * > Retorna string vazia quando o valor excede a capacidade do formato (overflow).
6
+ *
7
+ * @example
8
+ * ```html
9
+ * {{ 4567.88 | poDecimalFormat: '>>>,>>>,>>9.99' }}
10
+ * ```
11
+ */
12
+ export declare class PoDecimalFormatPipe implements PipeTransform {
13
+ private readonly languageService;
14
+ transform(value: number | string | null | undefined, format: string, locale?: string): string;
15
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@po-ui/ng-components",
3
- "version": "21.28.0",
3
+ "version": "21.29.0",
4
4
  "description": "PO UI - Components",
5
5
  "author": "PO UI",
6
6
  "license": "MIT",
@@ -22,8 +22,8 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "@angular/cdk": "~21.2.14",
25
- "@po-ui/style": "21.28.0",
26
- "@po-ui/ng-schematics": "21.28.0",
25
+ "@po-ui/style": "21.29.0",
26
+ "@po-ui/ng-schematics": "21.29.0",
27
27
  "driver.js": "~1.4.0",
28
28
  "echarts": "^6.1.0",
29
29
  "tslib": "^2.6.2"
@@ -39,7 +39,7 @@
39
39
  "@angular/platform-browser-dynamic": "^21",
40
40
  "@angular/router": "^21",
41
41
  "@angular-devkit/schematics": "^21",
42
- "@po-ui/style": "21.28.0",
42
+ "@po-ui/style": "21.29.0",
43
43
  "rxjs": "~7.8.1",
44
44
  "zone.js": "~0.15.0"
45
45
  },
Binary file
@@ -18,7 +18,7 @@ function default_1(options) {
18
18
  }
19
19
  function addPoPackageAndInstall() {
20
20
  return (tree, context) => {
21
- (0, package_config_1.addPackageToPackageJson)(tree, '@po-ui/ng-components', '21.28.0');
21
+ (0, package_config_1.addPackageToPackageJson)(tree, '@po-ui/ng-components', '21.29.0');
22
22
  // install packages
23
23
  context.addTask(new tasks_1.NodePackageInstallTask());
24
24
  };
@@ -6,7 +6,7 @@ const tasks_1 = require("@angular-devkit/schematics/tasks");
6
6
  const package_config_1 = require("@po-ui/ng-schematics/package-config");
7
7
  const changes_1 = require("./changes");
8
8
  function default_1() {
9
- return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.28.0', changes_1.updateDepedenciesVersion), postUpdate()]);
9
+ return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.29.0', changes_1.updateDepedenciesVersion), postUpdate()]);
10
10
  }
11
11
  function postUpdate() {
12
12
  return (_, context) => {
@@ -11,7 +11,7 @@ const changes_1 = require("./changes");
11
11
  const httpClientModuleName = 'HttpClientModule';
12
12
  const httpClientModuleSourcePath = '@angular/common/http';
13
13
  function default_1() {
14
- return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.28.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
14
+ return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.29.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
15
15
  }
16
16
  function postUpdate() {
17
17
  return (_, context) => {
@@ -6,7 +6,7 @@ const tasks_1 = require("@angular-devkit/schematics/tasks");
6
6
  const package_config_1 = require("@po-ui/ng-schematics/package-config");
7
7
  const changes_1 = require("./changes");
8
8
  function default_1() {
9
- return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.28.0', changes_1.updateDepedenciesVersion), postUpdate()]);
9
+ return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.29.0', changes_1.updateDepedenciesVersion), postUpdate()]);
10
10
  }
11
11
  function postUpdate() {
12
12
  return (_, context) => {
@@ -6,7 +6,7 @@ const tasks_1 = require("@angular-devkit/schematics/tasks");
6
6
  const package_config_1 = require("@po-ui/ng-schematics/package-config");
7
7
  const changes_1 = require("./changes");
8
8
  function default_1() {
9
- return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.28.0', changes_1.updateDepedenciesVersion), postUpdate()]);
9
+ return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.29.0', changes_1.updateDepedenciesVersion), postUpdate()]);
10
10
  }
11
11
  function postUpdate() {
12
12
  return (_, context) => {
@@ -40,11 +40,11 @@ function main(options) {
40
40
  configureNewIcon.toLowerCase() === 'y' ||
41
41
  configureNewIcon.toLowerCase() === 'sim' ||
42
42
  configureNewIcon.toLowerCase() === '') {
43
- return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.28.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
43
+ return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.29.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
44
44
  }
45
45
  else {
46
46
  return (0, schematics_1.chain)([
47
- (0, package_config_1.updatePackageJson)('21.28.0', changes_1.updateDepedenciesVersion),
47
+ (0, package_config_1.updatePackageJson)('21.29.0', changes_1.updateDepedenciesVersion),
48
48
  addImportOnly(options, [IconsDictionaryName, poIconDictionary], poModuleSourcePath),
49
49
  addProviderToAppModule(options, newProviderDictionary),
50
50
  updateAppConfigFileRule(),
@@ -40,11 +40,11 @@ function main(options) {
40
40
  configureNewIcon.toLowerCase() === 'y' ||
41
41
  configureNewIcon.toLowerCase() === 'sim' ||
42
42
  configureNewIcon.toLowerCase() === '') {
43
- return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.28.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
43
+ return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.29.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
44
44
  }
45
45
  else {
46
46
  return (0, schematics_1.chain)([
47
- (0, package_config_1.updatePackageJson)('21.28.0', changes_1.updateDepedenciesVersion),
47
+ (0, package_config_1.updatePackageJson)('21.29.0', changes_1.updateDepedenciesVersion),
48
48
  addImportOnly(options, [IconsDictionaryName, poIconDictionary], poModuleSourcePath),
49
49
  addProviderToAppModule(options, newProviderDictionary),
50
50
  updateAppConfigFileRule(),
@@ -10,7 +10,7 @@ const package_config_1 = require("@po-ui/ng-schematics/package-config");
10
10
  const changes_1 = require("./changes");
11
11
  function updateToV2() {
12
12
  return (0, schematics_1.chain)([
13
- updatePackageJson('21.28.0', changes_1.dependeciesChanges),
13
+ updatePackageJson('21.29.0', changes_1.dependeciesChanges),
14
14
  (0, replace_1.replaceInFile)('tslint.json', changes_1.tsLintReplaces),
15
15
  (0, replace_1.replaceInFile)('angular.json', changes_1.angularJsonReplaces),
16
16
  createUpgradeRule(),
@@ -40,11 +40,11 @@ function main(options) {
40
40
  configureNewIcon.toLowerCase() === 'y' ||
41
41
  configureNewIcon.toLowerCase() === 'sim' ||
42
42
  configureNewIcon.toLowerCase() === '') {
43
- return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.28.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
43
+ return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.29.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
44
44
  }
45
45
  else {
46
46
  return (0, schematics_1.chain)([
47
- (0, package_config_1.updatePackageJson)('21.28.0', changes_1.updateDepedenciesVersion),
47
+ (0, package_config_1.updatePackageJson)('21.29.0', changes_1.updateDepedenciesVersion),
48
48
  addImportOnly(options, [IconsDictionaryName, poIconDictionary], poModuleSourcePath),
49
49
  addProviderToAppModule(options, newProviderDictionary),
50
50
  updateAppConfigFileRule(),
@@ -9,7 +9,7 @@ const project_1 = require("@po-ui/ng-schematics/project");
9
9
  const changes_1 = require("./changes");
10
10
  function main() {
11
11
  return tslib_1.__awaiter(this, void 0, void 0, function* () {
12
- return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.28.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
12
+ return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.29.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
13
13
  });
14
14
  }
15
15
  function default_1() {
@@ -7,7 +7,7 @@ const project_1 = require("@po-ui/ng-schematics/project");
7
7
  const package_config_1 = require("@po-ui/ng-schematics/package-config");
8
8
  const changes_1 = require("./changes");
9
9
  function updateToV3() {
10
- return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.28.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
10
+ return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.29.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
11
11
  }
12
12
  function postUpdate() {
13
13
  return (_, context) => {
@@ -7,7 +7,7 @@ const project_1 = require("@po-ui/ng-schematics/project");
7
7
  const package_config_1 = require("@po-ui/ng-schematics/package-config");
8
8
  const changes_1 = require("./changes");
9
9
  function default_1() {
10
- return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.28.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
10
+ return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.29.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
11
11
  }
12
12
  function postUpdate() {
13
13
  return (_, context) => {
@@ -7,7 +7,7 @@ const project_1 = require("@po-ui/ng-schematics/project");
7
7
  const package_config_1 = require("@po-ui/ng-schematics/package-config");
8
8
  const changes_1 = require("./changes");
9
9
  function default_1() {
10
- return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.28.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
10
+ return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.29.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
11
11
  }
12
12
  function postUpdate() {
13
13
  return (_, context) => {
@@ -6,7 +6,7 @@ const tasks_1 = require("@angular-devkit/schematics/tasks");
6
6
  const package_config_1 = require("@po-ui/ng-schematics/package-config");
7
7
  const changes_1 = require("./changes");
8
8
  function default_1() {
9
- return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.28.0', changes_1.updateDepedenciesVersion), postUpdate()]);
9
+ return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.29.0', changes_1.updateDepedenciesVersion), postUpdate()]);
10
10
  }
11
11
  function postUpdate() {
12
12
  return (_, context) => {