@po-ui/ng-components 18.20.0 → 18.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/po-field/po-input/po-input-base.component.mjs +38 -4
- package/esm2022/lib/components/po-field/validators.mjs +21 -8
- package/esm2022/lib/components/po-stepper/po-stepper-base.component.mjs +15 -2
- package/esm2022/lib/components/po-stepper/po-stepper-label/po-stepper-label.component.mjs +8 -4
- package/esm2022/lib/components/po-stepper/po-stepper-step/po-stepper-step.component.mjs +13 -8
- package/esm2022/lib/components/po-stepper/po-stepper.component.mjs +5 -5
- package/fesm2022/po-ui-ng-components.mjs +94 -25
- package/fesm2022/po-ui-ng-components.mjs.map +1 -1
- package/lib/components/po-field/po-input/po-input-base.component.d.ts +27 -1
- package/lib/components/po-field/validators.d.ts +3 -2
- package/lib/components/po-stepper/po-stepper-base.component.d.ts +11 -1
- package/lib/components/po-stepper/po-stepper-label/po-stepper-label.component.d.ts +2 -1
- package/lib/components/po-stepper/po-stepper-step/po-stepper-step.component.d.ts +2 -1
- package/package.json +4 -4
- package/po-ui-ng-components-18.21.0.tgz +0 -0
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-update/v14/index.js +1 -1
- package/schematics/ng-update/v15/index.js +1 -1
- package/schematics/ng-update/v16/index.js +1 -1
- package/schematics/ng-update/v17/index.js +1 -1
- package/schematics/ng-update/v18/index.js +2 -2
- package/schematics/ng-update/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/po-ui-ng-components-18.20.0.tgz +0 -0
|
@@ -157,6 +157,32 @@ export declare abstract class PoInputBaseComponent implements ControlValueAccess
|
|
|
157
157
|
*
|
|
158
158
|
*/
|
|
159
159
|
upperCase: boolean;
|
|
160
|
+
_maskNoLengthValidation: boolean;
|
|
161
|
+
/**
|
|
162
|
+
* @description
|
|
163
|
+
*
|
|
164
|
+
* Define se os caracteres especiais da máscara devem ser ignorados ao validar os comprimentos mínimo (`minLength`) e máximo (`maxLength`) do campo.
|
|
165
|
+
*
|
|
166
|
+
* - Quando `true`, apenas os caracteres alfanuméricos serão contabilizados para a validação dos comprimentos.
|
|
167
|
+
* - Quando `false`, todos os caracteres, incluindo os especiais da máscara, serão considerados na validação.
|
|
168
|
+
*
|
|
169
|
+
* > Será ignorado essa propriedade , caso esteja utilizando junto com a propriedade `p-mask-format-model`.
|
|
170
|
+
*
|
|
171
|
+
* Exemplo:
|
|
172
|
+
* ```
|
|
173
|
+
* <po-input
|
|
174
|
+
* p-mask="999-999"
|
|
175
|
+
* p-maxlength="6"
|
|
176
|
+
* p-minlength="4"
|
|
177
|
+
* p-mask-no-length-validation="true"
|
|
178
|
+
* ></po-input>
|
|
179
|
+
* ```
|
|
180
|
+
* - Entrada: `123-456` → Validação será aplicada somente aos números, ignorando o caractere especial `-`.
|
|
181
|
+
*
|
|
182
|
+
* @default `false`
|
|
183
|
+
*/
|
|
184
|
+
set maskNoLengthValidation(value: boolean);
|
|
185
|
+
get maskNoLengthValidation(): boolean;
|
|
160
186
|
/**
|
|
161
187
|
* @optional
|
|
162
188
|
*
|
|
@@ -350,7 +376,7 @@ export declare abstract class PoInputBaseComponent implements ControlValueAccess
|
|
|
350
376
|
};
|
|
351
377
|
abstract getScreenValue(): string;
|
|
352
378
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoInputBaseComponent, never>;
|
|
353
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PoInputBaseComponent, never, never, { "autoFocus": { "alias": "p-auto-focus"; "required": false; }; "icon": { "alias": "p-icon"; "required": false; }; "emitAllChanges": { "alias": "p-emit-all-changes"; "required": false; }; "label": { "alias": "p-label"; "required": false; }; "help": { "alias": "p-help"; "required": false; }; "name": { "alias": "name"; "required": false; }; "errorAsyncProperties": { "alias": "p-error-async-properties"; "required": false; }; "errorPattern": { "alias": "p-error-pattern"; "required": false; }; "optional": { "alias": "p-optional"; "required": false; }; "showErrorMessageRequired": { "alias": "p-required-field-error-message"; "required": false; }; "upperCase": { "alias": "p-upper-case"; "required": false; }; "noAutocomplete": { "alias": "p-no-autocomplete"; "required": false; }; "placeholder": { "alias": "p-placeholder"; "required": false; }; "setDisabled": { "alias": "p-disabled"; "required": false; }; "setReadonly": { "alias": "p-readonly"; "required": false; }; "setRequired": { "alias": "p-required"; "required": false; }; "showRequired": { "alias": "p-show-required"; "required": false; }; "setClean": { "alias": "p-clean"; "required": false; }; "setPattern": { "alias": "p-pattern"; "required": false; }; "maxlength": { "alias": "p-maxlength"; "required": false; }; "minlength": { "alias": "p-minlength"; "required": false; }; "setMask": { "alias": "p-mask"; "required": false; }; "setMaskFormatModel": { "alias": "p-mask-format-model"; "required": false; }; }, { "blur": "p-blur"; "enter": "p-enter"; "change": "p-change"; "changeModel": "p-change-model"; }, never, never, false, never>;
|
|
379
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PoInputBaseComponent, never, never, { "autoFocus": { "alias": "p-auto-focus"; "required": false; }; "icon": { "alias": "p-icon"; "required": false; }; "emitAllChanges": { "alias": "p-emit-all-changes"; "required": false; }; "label": { "alias": "p-label"; "required": false; }; "help": { "alias": "p-help"; "required": false; }; "name": { "alias": "name"; "required": false; }; "errorAsyncProperties": { "alias": "p-error-async-properties"; "required": false; }; "errorPattern": { "alias": "p-error-pattern"; "required": false; }; "optional": { "alias": "p-optional"; "required": false; }; "showErrorMessageRequired": { "alias": "p-required-field-error-message"; "required": false; }; "upperCase": { "alias": "p-upper-case"; "required": false; }; "maskNoLengthValidation": { "alias": "p-mask-no-length-validation"; "required": false; }; "noAutocomplete": { "alias": "p-no-autocomplete"; "required": false; }; "placeholder": { "alias": "p-placeholder"; "required": false; }; "setDisabled": { "alias": "p-disabled"; "required": false; }; "setReadonly": { "alias": "p-readonly"; "required": false; }; "setRequired": { "alias": "p-required"; "required": false; }; "showRequired": { "alias": "p-show-required"; "required": false; }; "setClean": { "alias": "p-clean"; "required": false; }; "setPattern": { "alias": "p-pattern"; "required": false; }; "maxlength": { "alias": "p-maxlength"; "required": false; }; "minlength": { "alias": "p-minlength"; "required": false; }; "setMask": { "alias": "p-mask"; "required": false; }; "setMaskFormatModel": { "alias": "p-mask-format-model"; "required": false; }; }, { "blur": "p-blur"; "enter": "p-enter"; "change": "p-change"; "changeModel": "p-change-model"; }, never, never, false, never>;
|
|
354
380
|
static ngAcceptInputType_autoFocus: any;
|
|
355
381
|
static ngAcceptInputType_emitAllChanges: any;
|
|
356
382
|
static ngAcceptInputType_upperCase: any;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export declare function requiredFailed(required: boolean, disabled: boolean, value: string | Array<any> | number | boolean): boolean;
|
|
2
|
-
export declare function maxlengpoailed(maxlength: number, value: string | number): boolean;
|
|
3
|
-
export declare function minlengpoailed(minlength: number, value: string | number): boolean;
|
|
2
|
+
export declare function maxlengpoailed(maxlength: number, value: string | number, maskNoLengthValidation?: boolean): boolean;
|
|
3
|
+
export declare function minlengpoailed(minlength: number, value: string | number, maskNoLengthValidation?: boolean): boolean;
|
|
4
|
+
export declare function validateLength(limit: number, value: string | number, comparison: 'max' | 'min', maskNoLengthValidation?: boolean): boolean;
|
|
4
5
|
export declare function patternFailed(pattern: string, value: string): boolean;
|
|
5
6
|
export declare function minFailed(min: number, value: number): boolean;
|
|
6
7
|
export declare function maxFailed(max: number, value: number): boolean;
|
|
@@ -233,7 +233,17 @@ export declare class PoStepperBaseComponent {
|
|
|
233
233
|
* @default `po-icon-edit`
|
|
234
234
|
*/
|
|
235
235
|
iconActive?: string | TemplateRef<void>;
|
|
236
|
+
/**
|
|
237
|
+
* @optional
|
|
238
|
+
*
|
|
239
|
+
* @description
|
|
240
|
+
*
|
|
241
|
+
* Desabilita o clique nos steps.
|
|
242
|
+
*
|
|
243
|
+
* @default `false`
|
|
244
|
+
*/
|
|
245
|
+
disabledClick: boolean;
|
|
236
246
|
private initializeSteps;
|
|
237
247
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoStepperBaseComponent, never>;
|
|
238
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PoStepperBaseComponent, never, never, { "stepIcons": { "alias": "p-step-icons"; "required": false; }; "stepSize": { "alias": "p-step-size"; "required": false; }; "alignCenter": { "alias": "p-align-center"; "required": false; }; "orientation": { "alias": "p-orientation"; "required": false; }; "step": { "alias": "p-step"; "required": false; }; "steps": { "alias": "p-steps"; "required": false; }; "sequential": { "alias": "p-sequential"; "required": false; }; "iconDone": { "alias": "p-step-icon-done"; "required": false; }; "iconActive": { "alias": "p-step-icon-active"; "required": false; }; }, { "onChangeStep": "p-change-step"; }, never, never, false, never>;
|
|
248
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PoStepperBaseComponent, never, never, { "stepIcons": { "alias": "p-step-icons"; "required": false; }; "stepSize": { "alias": "p-step-size"; "required": false; }; "alignCenter": { "alias": "p-align-center"; "required": false; }; "orientation": { "alias": "p-orientation"; "required": false; }; "step": { "alias": "p-step"; "required": false; }; "steps": { "alias": "p-steps"; "required": false; }; "sequential": { "alias": "p-sequential"; "required": false; }; "iconDone": { "alias": "p-step-icon-done"; "required": false; }; "iconActive": { "alias": "p-step-icon-active"; "required": false; }; "disabledClick": { "alias": "p-disable-click"; "required": false; }; }, { "onChangeStep": "p-change-step"; }, never, never, false, never>;
|
|
239
249
|
}
|
|
@@ -15,6 +15,7 @@ export declare class PoStepperLabelComponent implements AfterViewInit, OnChanges
|
|
|
15
15
|
status: string;
|
|
16
16
|
isVerticalOrientation: boolean;
|
|
17
17
|
labelElement: ElementRef;
|
|
18
|
+
disabledClick: boolean;
|
|
18
19
|
displayedContent: string;
|
|
19
20
|
tooltipContent: string;
|
|
20
21
|
private maxLabelLength;
|
|
@@ -26,5 +27,5 @@ export declare class PoStepperLabelComponent implements AfterViewInit, OnChanges
|
|
|
26
27
|
private updateLabel;
|
|
27
28
|
private updateTooltip;
|
|
28
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoStepperLabelComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PoStepperLabelComponent, "po-stepper-label", never, { "alignCenter": { "alias": "p-align-center"; "required": false; }; "content": { "alias": "p-content"; "required": false; }; "status": { "alias": "p-status"; "required": false; }; "isVerticalOrientation": { "alias": "p-vertical-orientation"; "required": false; }; }, {}, never, never, false, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PoStepperLabelComponent, "po-stepper-label", never, { "alignCenter": { "alias": "p-align-center"; "required": false; }; "content": { "alias": "p-content"; "required": false; }; "status": { "alias": "p-status"; "required": false; }; "isVerticalOrientation": { "alias": "p-vertical-orientation"; "required": false; }; "disabledClick": { "alias": "p-disable-click"; "required": false; }; }, {}, never, never, false, never>;
|
|
30
31
|
}
|
|
@@ -32,6 +32,7 @@ export declare class PoStepperStepComponent implements OnChanges {
|
|
|
32
32
|
activated: EventEmitter<any>;
|
|
33
33
|
click: EventEmitter<any>;
|
|
34
34
|
enter: EventEmitter<any>;
|
|
35
|
+
disabledClick: boolean;
|
|
35
36
|
readonly literals: any;
|
|
36
37
|
stepSizeOriginal: number;
|
|
37
38
|
private _label;
|
|
@@ -49,5 +50,5 @@ export declare class PoStepperStepComponent implements OnChanges {
|
|
|
49
50
|
onEnter(): void;
|
|
50
51
|
setDefaultStepSize(): void;
|
|
51
52
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoStepperStepComponent, never>;
|
|
52
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PoStepperStepComponent, "po-stepper-step", never, { "alignCenter": { "alias": "p-align-center"; "required": false; }; "circleContent": { "alias": "p-circle-content"; "required": false; }; "nextStatus": { "alias": "p-next-status"; "required": false; }; "orientation": { "alias": "p-orientation"; "required": false; }; "label": { "alias": "p-label"; "required": false; }; "status": { "alias": "p-status"; "required": false; }; "stepIcons": { "alias": "p-step-icons"; "required": false; }; "stepSize": { "alias": "p-step-size"; "required": false; }; "iconDefault": { "alias": "p-icon-default"; "required": false; }; "iconDone": { "alias": "p-step-icon-done"; "required": false; }; "iconActive": { "alias": "p-step-icon-active"; "required": false; }; "isVerticalOrientation": { "alias": "p-vertical-orientation"; "required": false; }; }, { "activated": "p-activated"; "click": "p-click"; "enter": "p-enter"; }, never, never, false, never>;
|
|
53
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PoStepperStepComponent, "po-stepper-step", never, { "alignCenter": { "alias": "p-align-center"; "required": false; }; "circleContent": { "alias": "p-circle-content"; "required": false; }; "nextStatus": { "alias": "p-next-status"; "required": false; }; "orientation": { "alias": "p-orientation"; "required": false; }; "label": { "alias": "p-label"; "required": false; }; "status": { "alias": "p-status"; "required": false; }; "stepIcons": { "alias": "p-step-icons"; "required": false; }; "stepSize": { "alias": "p-step-size"; "required": false; }; "iconDefault": { "alias": "p-icon-default"; "required": false; }; "iconDone": { "alias": "p-step-icon-done"; "required": false; }; "iconActive": { "alias": "p-step-icon-active"; "required": false; }; "isVerticalOrientation": { "alias": "p-vertical-orientation"; "required": false; }; "disabledClick": { "alias": "p-disable-click"; "required": false; }; }, { "activated": "p-activated"; "click": "p-click"; "enter": "p-enter"; }, never, never, false, never>;
|
|
53
54
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@po-ui/ng-components",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.21.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": "~18.0.1",
|
|
25
|
-
"@po-ui/style": "18.
|
|
26
|
-
"@po-ui/ng-schematics": "18.
|
|
25
|
+
"@po-ui/style": "18.21.0",
|
|
26
|
+
"@po-ui/ng-schematics": "18.21.0",
|
|
27
27
|
"tslib": "^2.6.2"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"@angular/platform-browser-dynamic": "^18",
|
|
38
38
|
"@angular/router": "^18",
|
|
39
39
|
"@angular-devkit/schematics": "^18",
|
|
40
|
-
"@po-ui/style": "18.
|
|
40
|
+
"@po-ui/style": "18.21.0",
|
|
41
41
|
"rxjs": "~7.8.1",
|
|
42
42
|
"zone.js": "~0.14.4"
|
|
43
43
|
},
|
|
Binary file
|
|
@@ -18,7 +18,7 @@ function default_1(options) {
|
|
|
18
18
|
exports.default = default_1;
|
|
19
19
|
function addPoPackageAndInstall() {
|
|
20
20
|
return (tree, context) => {
|
|
21
|
-
(0, package_config_1.addPackageToPackageJson)(tree, '@po-ui/ng-components', '18.
|
|
21
|
+
(0, package_config_1.addPackageToPackageJson)(tree, '@po-ui/ng-components', '18.21.0');
|
|
22
22
|
// install packages
|
|
23
23
|
context.addTask(new tasks_1.NodePackageInstallTask());
|
|
24
24
|
};
|
|
@@ -5,7 +5,7 @@ const tasks_1 = require("@angular-devkit/schematics/tasks");
|
|
|
5
5
|
const package_config_1 = require("@po-ui/ng-schematics/package-config");
|
|
6
6
|
const changes_1 = require("./changes");
|
|
7
7
|
function default_1() {
|
|
8
|
-
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('18.
|
|
8
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('18.21.0', changes_1.updateDepedenciesVersion), postUpdate()]);
|
|
9
9
|
}
|
|
10
10
|
exports.default = default_1;
|
|
11
11
|
function postUpdate() {
|
|
@@ -10,7 +10,7 @@ const changes_1 = require("./changes");
|
|
|
10
10
|
const httpClientModuleName = 'HttpClientModule';
|
|
11
11
|
const httpClientModuleSourcePath = '@angular/common/http';
|
|
12
12
|
function default_1() {
|
|
13
|
-
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('18.
|
|
13
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('18.21.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
|
|
14
14
|
}
|
|
15
15
|
exports.default = default_1;
|
|
16
16
|
function postUpdate() {
|
|
@@ -5,7 +5,7 @@ const tasks_1 = require("@angular-devkit/schematics/tasks");
|
|
|
5
5
|
const package_config_1 = require("@po-ui/ng-schematics/package-config");
|
|
6
6
|
const changes_1 = require("./changes");
|
|
7
7
|
function default_1() {
|
|
8
|
-
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('18.
|
|
8
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('18.21.0', changes_1.updateDepedenciesVersion), postUpdate()]);
|
|
9
9
|
}
|
|
10
10
|
exports.default = default_1;
|
|
11
11
|
function postUpdate() {
|
|
@@ -5,7 +5,7 @@ const tasks_1 = require("@angular-devkit/schematics/tasks");
|
|
|
5
5
|
const package_config_1 = require("@po-ui/ng-schematics/package-config");
|
|
6
6
|
const changes_1 = require("./changes");
|
|
7
7
|
function default_1() {
|
|
8
|
-
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('18.
|
|
8
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('18.21.0', changes_1.updateDepedenciesVersion), postUpdate()]);
|
|
9
9
|
}
|
|
10
10
|
exports.default = default_1;
|
|
11
11
|
function postUpdate() {
|
|
@@ -36,11 +36,11 @@ function main(options) {
|
|
|
36
36
|
configureNewIcon.toLowerCase() === 'y' ||
|
|
37
37
|
configureNewIcon.toLowerCase() === 'sim' ||
|
|
38
38
|
configureNewIcon.toLowerCase() === '') {
|
|
39
|
-
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('18.
|
|
39
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('18.21.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
|
|
40
40
|
}
|
|
41
41
|
else {
|
|
42
42
|
return (0, schematics_1.chain)([
|
|
43
|
-
(0, package_config_1.updatePackageJson)('18.
|
|
43
|
+
(0, package_config_1.updatePackageJson)('18.21.0', changes_1.updateDepedenciesVersion),
|
|
44
44
|
addImportOnly(options, [IconsDictionaryName, poIconDictionary], poModuleSourcePath),
|
|
45
45
|
addProviderToAppModule(options, newProviderDictionary),
|
|
46
46
|
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('18.
|
|
13
|
+
updatePackageJson('18.21.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(),
|
|
@@ -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)('18.
|
|
10
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('18.21.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
|
|
11
11
|
}
|
|
12
12
|
exports.updateToV3 = updateToV3;
|
|
13
13
|
function postUpdate() {
|
|
@@ -6,7 +6,7 @@ const project_1 = require("@po-ui/ng-schematics/project");
|
|
|
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)('18.
|
|
9
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('18.21.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
|
|
10
10
|
}
|
|
11
11
|
exports.default = default_1;
|
|
12
12
|
function postUpdate() {
|
|
@@ -6,7 +6,7 @@ const project_1 = require("@po-ui/ng-schematics/project");
|
|
|
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)('18.
|
|
9
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('18.21.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
|
|
10
10
|
}
|
|
11
11
|
exports.default = default_1;
|
|
12
12
|
function postUpdate() {
|
|
@@ -5,7 +5,7 @@ const tasks_1 = require("@angular-devkit/schematics/tasks");
|
|
|
5
5
|
const package_config_1 = require("@po-ui/ng-schematics/package-config");
|
|
6
6
|
const changes_1 = require("./changes");
|
|
7
7
|
function default_1() {
|
|
8
|
-
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('18.
|
|
8
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('18.21.0', changes_1.updateDepedenciesVersion), postUpdate()]);
|
|
9
9
|
}
|
|
10
10
|
exports.default = default_1;
|
|
11
11
|
function postUpdate() {
|
|
Binary file
|