@po-ui/ng-components 20.12.0 → 20.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/po-ui-ng-components.mjs +66 -7
- package/fesm2022/po-ui-ng-components.mjs.map +1 -1
- package/index.d.ts +41 -3
- package/lib/components/po-accordion/po-accordion-base.component.d.ts +17 -0
- package/lib/components/po-search/po-search-base.component.d.ts +20 -1
- package/lib/components/po-search/po-search.component.d.ts +1 -0
- package/package.json +4 -4
- package/po-ui-ng-components-20.13.0.tgz +0 -0
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-update/v14/index.js +1 -1
- package/schematics/ng-update/v15/index.js +1 -1
- package/schematics/ng-update/v16/index.js +1 -1
- package/schematics/ng-update/v17/index.js +1 -1
- package/schematics/ng-update/v18/index.js +2 -2
- package/schematics/ng-update/v19/index.js +2 -2
- package/schematics/ng-update/v2/index.js +1 -1
- package/schematics/ng-update/v20/index.js +2 -2
- package/schematics/ng-update/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-20.12.0.tgz +0 -0
package/index.d.ts
CHANGED
|
@@ -217,6 +217,7 @@ interface PoAccordionLiterals {
|
|
|
217
217
|
declare class PoAccordionBaseComponent {
|
|
218
218
|
private language;
|
|
219
219
|
private _literals;
|
|
220
|
+
private _size?;
|
|
220
221
|
/**
|
|
221
222
|
* @optional
|
|
222
223
|
*
|
|
@@ -275,6 +276,22 @@ declare class PoAccordionBaseComponent {
|
|
|
275
276
|
* @default `false`
|
|
276
277
|
*/
|
|
277
278
|
allowExpandItems: boolean;
|
|
279
|
+
/**
|
|
280
|
+
* @optional
|
|
281
|
+
*
|
|
282
|
+
* @description
|
|
283
|
+
*
|
|
284
|
+
* Define o tamanho do componente:
|
|
285
|
+
* - `small`: altura de 32px (disponível apenas para acessibilidade AA).
|
|
286
|
+
* - `medium`: altura de 44px.
|
|
287
|
+
*
|
|
288
|
+
* > Caso a acessibilidade AA não esteja configurada, o tamanho `medium` será mantido.
|
|
289
|
+
* Para mais detalhes, consulte a documentação do [po-theme](https://po-ui.io/documentation/po-theme).
|
|
290
|
+
*
|
|
291
|
+
* @default `medium`
|
|
292
|
+
*/
|
|
293
|
+
set size(value: string);
|
|
294
|
+
get size(): string;
|
|
278
295
|
/**
|
|
279
296
|
* @optional
|
|
280
297
|
*
|
|
@@ -295,7 +312,7 @@ declare class PoAccordionBaseComponent {
|
|
|
295
312
|
collapseAllEvent: EventEmitter<void>;
|
|
296
313
|
constructor(languageService: PoLanguageService);
|
|
297
314
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoAccordionBaseComponent, never>;
|
|
298
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PoAccordionBaseComponent, never, never, { "literals": { "alias": "p-literals"; "required": false; }; "showManagerAccordion": { "alias": "p-show-manager-accordion"; "required": false; }; "allowExpandItems": { "alias": "p-allow-expand-all-items"; "required": false; }; }, { "expandAllEvent": "p-expand-all"; "collapseAllEvent": "p-collapse-all"; }, never, never, true, never>;
|
|
315
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PoAccordionBaseComponent, never, never, { "literals": { "alias": "p-literals"; "required": false; }; "showManagerAccordion": { "alias": "p-show-manager-accordion"; "required": false; }; "allowExpandItems": { "alias": "p-allow-expand-all-items"; "required": false; }; "size": { "alias": "p-size"; "required": false; }; }, { "expandAllEvent": "p-expand-all"; "collapseAllEvent": "p-collapse-all"; }, never, never, true, never>;
|
|
299
316
|
static ngAcceptInputType_showManagerAccordion: any;
|
|
300
317
|
static ngAcceptInputType_allowExpandItems: any;
|
|
301
318
|
}
|
|
@@ -9949,9 +9966,9 @@ type searchMode = 'action' | 'trigger' | 'locate' | 'execute';
|
|
|
9949
9966
|
*
|
|
9950
9967
|
*/
|
|
9951
9968
|
declare class PoSearchBaseComponent {
|
|
9969
|
+
protected language: string;
|
|
9952
9970
|
private _literals?;
|
|
9953
9971
|
private _ariaLabel?;
|
|
9954
|
-
protected language: string;
|
|
9955
9972
|
private _filterSelect?;
|
|
9956
9973
|
private _size?;
|
|
9957
9974
|
private _keysLabel?;
|
|
@@ -10051,6 +10068,7 @@ declare class PoSearchBaseComponent {
|
|
|
10051
10068
|
* ```
|
|
10052
10069
|
*/
|
|
10053
10070
|
icon: string | TemplateRef<void>;
|
|
10071
|
+
id: string;
|
|
10054
10072
|
/**
|
|
10055
10073
|
* @optional
|
|
10056
10074
|
*
|
|
@@ -10105,6 +10123,24 @@ declare class PoSearchBaseComponent {
|
|
|
10105
10123
|
* > Compatível com a propriedade `p-search-type` do tipo `locate`.
|
|
10106
10124
|
*/
|
|
10107
10125
|
locateSummary: PoSearchLocateSummary;
|
|
10126
|
+
/**
|
|
10127
|
+
* @optional
|
|
10128
|
+
*
|
|
10129
|
+
* @description
|
|
10130
|
+
* Nome e identificador do campo.
|
|
10131
|
+
*
|
|
10132
|
+
*/
|
|
10133
|
+
name: string;
|
|
10134
|
+
/**
|
|
10135
|
+
* @optional
|
|
10136
|
+
*
|
|
10137
|
+
* @description
|
|
10138
|
+
*
|
|
10139
|
+
* Define a propriedade nativa `autocomplete` do campo como `off`.
|
|
10140
|
+
*
|
|
10141
|
+
* @default `false`
|
|
10142
|
+
*/
|
|
10143
|
+
noAutocomplete: boolean;
|
|
10108
10144
|
/**
|
|
10109
10145
|
* @optional
|
|
10110
10146
|
*
|
|
@@ -10260,8 +10296,9 @@ declare class PoSearchBaseComponent {
|
|
|
10260
10296
|
constructor(languageService: PoLanguageService);
|
|
10261
10297
|
ensureFilterSelectOption(values: any): any[];
|
|
10262
10298
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoSearchBaseComponent, never>;
|
|
10263
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PoSearchBaseComponent, never, never, { "ariaLabel": { "alias": "p-aria-label"; "required": false; }; "disabled": { "alias": "p-disabled"; "required": false; }; "filterKeys": { "alias": "p-filter-keys"; "required": false; }; "filterSelect": { "alias": "p-filter-select"; "required": false; }; "filterType": { "alias": "p-filter-type"; "required": false; }; "icon": { "alias": "p-icon"; "required": false; }; "items": { "alias": "p-items"; "required": false; }; "literals": { "alias": "p-literals"; "required": false; }; "locateSummary": { "alias": "p-locate-summary"; "required": false; }; "type": { "alias": "p-search-type"; "required": false; }; "showListbox": { "alias": "p-show-listbox"; "required": false; }; "size": { "alias": "p-size"; "required": false; }; "keysLabel": { "alias": "p-keys-label"; "required": false; }; }, { "blur": "p-blur"; "changeModel": "p-change-model"; "filter": "p-filter"; "filteredItemsChange": "p-filtered-items-change"; "focusEvent": "p-focus"; "keydown": "p-keydown"; "listboxOnClick": "p-listbox-onclick"; "locateNext": "p-locate-next"; "locatePrevious": "p-locate-previous"; "footerAction": "p-footer-action-listbox"; }, never, never, true, never>;
|
|
10299
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PoSearchBaseComponent, never, never, { "ariaLabel": { "alias": "p-aria-label"; "required": false; }; "disabled": { "alias": "p-disabled"; "required": false; }; "filterKeys": { "alias": "p-filter-keys"; "required": false; }; "filterSelect": { "alias": "p-filter-select"; "required": false; }; "filterType": { "alias": "p-filter-type"; "required": false; }; "icon": { "alias": "p-icon"; "required": false; }; "id": { "alias": "p-id"; "required": false; }; "items": { "alias": "p-items"; "required": false; }; "literals": { "alias": "p-literals"; "required": false; }; "locateSummary": { "alias": "p-locate-summary"; "required": false; }; "name": { "alias": "name"; "required": false; }; "noAutocomplete": { "alias": "p-no-autocomplete"; "required": false; }; "type": { "alias": "p-search-type"; "required": false; }; "showListbox": { "alias": "p-show-listbox"; "required": false; }; "size": { "alias": "p-size"; "required": false; }; "keysLabel": { "alias": "p-keys-label"; "required": false; }; }, { "blur": "p-blur"; "changeModel": "p-change-model"; "filter": "p-filter"; "filteredItemsChange": "p-filtered-items-change"; "focusEvent": "p-focus"; "keydown": "p-keydown"; "listboxOnClick": "p-listbox-onclick"; "locateNext": "p-locate-next"; "locatePrevious": "p-locate-previous"; "footerAction": "p-footer-action-listbox"; }, never, never, true, never>;
|
|
10264
10300
|
static ngAcceptInputType_disabled: any;
|
|
10301
|
+
static ngAcceptInputType_noAutocomplete: any;
|
|
10265
10302
|
static ngAcceptInputType_showListbox: any;
|
|
10266
10303
|
}
|
|
10267
10304
|
|
|
@@ -10362,6 +10399,7 @@ declare class PoSearchComponent extends PoSearchBaseComponent implements OnInit,
|
|
|
10362
10399
|
label: string;
|
|
10363
10400
|
value: string;
|
|
10364
10401
|
}[];
|
|
10402
|
+
get autocomplete(): string;
|
|
10365
10403
|
onCloseListbox(): void;
|
|
10366
10404
|
onListboxClick(option: PoSearchOption | any, event?: any): void;
|
|
10367
10405
|
onBlur(): void;
|
|
@@ -81,6 +81,7 @@ export declare const poAccordionLiteralsDefault: {
|
|
|
81
81
|
export declare class PoAccordionBaseComponent {
|
|
82
82
|
private language;
|
|
83
83
|
private _literals;
|
|
84
|
+
private _size?;
|
|
84
85
|
/**
|
|
85
86
|
* @optional
|
|
86
87
|
*
|
|
@@ -139,6 +140,22 @@ export declare class PoAccordionBaseComponent {
|
|
|
139
140
|
* @default `false`
|
|
140
141
|
*/
|
|
141
142
|
allowExpandItems: boolean;
|
|
143
|
+
/**
|
|
144
|
+
* @optional
|
|
145
|
+
*
|
|
146
|
+
* @description
|
|
147
|
+
*
|
|
148
|
+
* Define o tamanho do componente:
|
|
149
|
+
* - `small`: altura de 32px (disponível apenas para acessibilidade AA).
|
|
150
|
+
* - `medium`: altura de 44px.
|
|
151
|
+
*
|
|
152
|
+
* > Caso a acessibilidade AA não esteja configurada, o tamanho `medium` será mantido.
|
|
153
|
+
* Para mais detalhes, consulte a documentação do [po-theme](https://po-ui.io/documentation/po-theme).
|
|
154
|
+
*
|
|
155
|
+
* @default `medium`
|
|
156
|
+
*/
|
|
157
|
+
set size(value: string);
|
|
158
|
+
get size(): string;
|
|
142
159
|
/**
|
|
143
160
|
* @optional
|
|
144
161
|
*
|
|
@@ -75,9 +75,9 @@ export type searchMode = 'action' | 'trigger' | 'locate' | 'execute';
|
|
|
75
75
|
*
|
|
76
76
|
*/
|
|
77
77
|
export declare class PoSearchBaseComponent {
|
|
78
|
+
protected language: string;
|
|
78
79
|
private _literals?;
|
|
79
80
|
private _ariaLabel?;
|
|
80
|
-
protected language: string;
|
|
81
81
|
private _filterSelect?;
|
|
82
82
|
private _size?;
|
|
83
83
|
private _keysLabel?;
|
|
@@ -177,6 +177,7 @@ export declare class PoSearchBaseComponent {
|
|
|
177
177
|
* ```
|
|
178
178
|
*/
|
|
179
179
|
icon: string | TemplateRef<void>;
|
|
180
|
+
id: string;
|
|
180
181
|
/**
|
|
181
182
|
* @optional
|
|
182
183
|
*
|
|
@@ -231,6 +232,24 @@ export declare class PoSearchBaseComponent {
|
|
|
231
232
|
* > Compatível com a propriedade `p-search-type` do tipo `locate`.
|
|
232
233
|
*/
|
|
233
234
|
locateSummary: PoSearchLocateSummary;
|
|
235
|
+
/**
|
|
236
|
+
* @optional
|
|
237
|
+
*
|
|
238
|
+
* @description
|
|
239
|
+
* Nome e identificador do campo.
|
|
240
|
+
*
|
|
241
|
+
*/
|
|
242
|
+
name: string;
|
|
243
|
+
/**
|
|
244
|
+
* @optional
|
|
245
|
+
*
|
|
246
|
+
* @description
|
|
247
|
+
*
|
|
248
|
+
* Define a propriedade nativa `autocomplete` do campo como `off`.
|
|
249
|
+
*
|
|
250
|
+
* @default `false`
|
|
251
|
+
*/
|
|
252
|
+
noAutocomplete: boolean;
|
|
234
253
|
/**
|
|
235
254
|
* @optional
|
|
236
255
|
*
|
|
@@ -103,6 +103,7 @@ export declare class PoSearchComponent extends PoSearchBaseComponent implements
|
|
|
103
103
|
label: string;
|
|
104
104
|
value: string;
|
|
105
105
|
}[];
|
|
106
|
+
get autocomplete(): string;
|
|
106
107
|
onCloseListbox(): void;
|
|
107
108
|
onListboxClick(option: PoSearchOption | any, event?: any): void;
|
|
108
109
|
onBlur(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@po-ui/ng-components",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.13.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": "~20.0.3",
|
|
25
|
-
"@po-ui/style": "20.
|
|
26
|
-
"@po-ui/ng-schematics": "20.
|
|
25
|
+
"@po-ui/style": "20.13.0",
|
|
26
|
+
"@po-ui/ng-schematics": "20.13.0",
|
|
27
27
|
"echarts": "^5.6.0",
|
|
28
28
|
"tslib": "^2.3.0"
|
|
29
29
|
},
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@angular/platform-browser-dynamic": "^20",
|
|
39
39
|
"@angular/router": "^20",
|
|
40
40
|
"@angular-devkit/schematics": "^20",
|
|
41
|
-
"@po-ui/style": "20.
|
|
41
|
+
"@po-ui/style": "20.13.0",
|
|
42
42
|
"rxjs": "~7.8.1",
|
|
43
43
|
"zone.js": "~0.15.0"
|
|
44
44
|
},
|
|
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', '20.
|
|
21
|
+
(0, package_config_1.addPackageToPackageJson)(tree, '@po-ui/ng-components', '20.13.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)('20.
|
|
9
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('20.13.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)('20.
|
|
14
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('20.13.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)('20.
|
|
9
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('20.13.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)('20.
|
|
9
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('20.13.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)('20.
|
|
43
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('20.13.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
|
|
44
44
|
}
|
|
45
45
|
else {
|
|
46
46
|
return (0, schematics_1.chain)([
|
|
47
|
-
(0, package_config_1.updatePackageJson)('20.
|
|
47
|
+
(0, package_config_1.updatePackageJson)('20.13.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)('20.
|
|
43
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('20.13.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
|
|
44
44
|
}
|
|
45
45
|
else {
|
|
46
46
|
return (0, schematics_1.chain)([
|
|
47
|
-
(0, package_config_1.updatePackageJson)('20.
|
|
47
|
+
(0, package_config_1.updatePackageJson)('20.13.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('20.
|
|
13
|
+
updatePackageJson('20.13.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)('20.
|
|
43
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('20.13.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
|
|
44
44
|
}
|
|
45
45
|
else {
|
|
46
46
|
return (0, schematics_1.chain)([
|
|
47
|
-
(0, package_config_1.updatePackageJson)('20.
|
|
47
|
+
(0, package_config_1.updatePackageJson)('20.13.0', changes_1.updateDepedenciesVersion),
|
|
48
48
|
addImportOnly(options, [IconsDictionaryName, poIconDictionary], poModuleSourcePath),
|
|
49
49
|
addProviderToAppModule(options, newProviderDictionary),
|
|
50
50
|
updateAppConfigFileRule(),
|
|
@@ -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)('20.
|
|
10
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('20.13.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)('20.
|
|
10
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('20.13.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)('20.
|
|
10
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('20.13.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)('20.
|
|
9
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('20.13.0', changes_1.updateDepedenciesVersion), postUpdate()]);
|
|
10
10
|
}
|
|
11
11
|
function postUpdate() {
|
|
12
12
|
return (_, context) => {
|
|
Binary file
|