@po-ui/ng-templates 21.9.0 → 21.10.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@po-ui/ng-templates",
|
|
3
|
-
"version": "21.
|
|
3
|
+
"version": "21.10.0",
|
|
4
4
|
"description": "PO UI - Templates",
|
|
5
5
|
"author": "PO UI",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
},
|
|
12
12
|
"schematics": "./schematics/collection.json",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@po-ui/ng-components": "21.
|
|
15
|
-
"@po-ui/ng-schematics": "21.
|
|
14
|
+
"@po-ui/ng-components": "21.10.0",
|
|
15
|
+
"@po-ui/ng-schematics": "21.10.0",
|
|
16
16
|
"tslib": "^2.6.2"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@angular/platform-browser": "^21",
|
|
25
25
|
"@angular/platform-browser-dynamic": "^21",
|
|
26
26
|
"@angular/router": "^21",
|
|
27
|
-
"@po-ui/ng-components": "21.
|
|
27
|
+
"@po-ui/ng-components": "21.10.0",
|
|
28
28
|
"rxjs": "~7.8.1",
|
|
29
29
|
"zone.js": "~0.15.0"
|
|
30
30
|
},
|
|
Binary file
|
|
@@ -23,7 +23,7 @@ function default_1(options) {
|
|
|
23
23
|
}
|
|
24
24
|
function addPoPackageAndInstall() {
|
|
25
25
|
return (tree, context) => {
|
|
26
|
-
(0, package_config_1.addPackageToPackageJson)(tree, '@po-ui/ng-templates', '21.
|
|
26
|
+
(0, package_config_1.addPackageToPackageJson)(tree, '@po-ui/ng-templates', '21.10.0');
|
|
27
27
|
// install packages
|
|
28
28
|
context.addTask(new tasks_1.NodePackageInstallTask());
|
|
29
29
|
};
|
|
@@ -3891,6 +3891,18 @@ declare class PoPageDynamicListBaseComponent {
|
|
|
3891
3891
|
* Por exemplo: ["idCard", "name", "hireStatus", "age"].
|
|
3892
3892
|
*/
|
|
3893
3893
|
changeVisibleColumns: EventEmitter<string[]>;
|
|
3894
|
+
/**
|
|
3895
|
+
* @optional
|
|
3896
|
+
*
|
|
3897
|
+
* @description
|
|
3898
|
+
* Evento disparado ao alterar o estado de fixação de uma coluna no gerenciador de colunas.
|
|
3899
|
+
*
|
|
3900
|
+
* O componente envia como parâmetro um array de string com as propriedades das colunas fixas.
|
|
3901
|
+
* Por exemplo: ["name", "age"].
|
|
3902
|
+
*
|
|
3903
|
+
* > Incompatível com `p-hide-action-fixed-columns`. Quando esta propriedade estiver ativa, o evento não será disparado.
|
|
3904
|
+
*/
|
|
3905
|
+
changeFixedColumns: i0.OutputEmitterRef<string[]>;
|
|
3894
3906
|
/**
|
|
3895
3907
|
* @optional
|
|
3896
3908
|
*
|
|
@@ -3981,7 +3993,7 @@ declare class PoPageDynamicListBaseComponent {
|
|
|
3981
3993
|
*/
|
|
3982
3994
|
private sortColumnsByOrder;
|
|
3983
3995
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoPageDynamicListBaseComponent, never>;
|
|
3984
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PoPageDynamicListBaseComponent, never, never, { "breadcrumb": { "alias": "p-breadcrumb"; "required": false; }; "serviceApi": { "alias": "p-service-api"; "required": false; }; "title": { "alias": "p-title"; "required": false; }; "autoRouter": { "alias": "p-auto-router"; "required": false; }; "fields": { "alias": "p-fields"; "required": false; }; }, { "changeVisibleColumns": "p-change-visible-columns"; "columnRestoreManager": "p-restore-column-manager"; "sortBy": "p-sort-by"; }, never, never, true, never>;
|
|
3996
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PoPageDynamicListBaseComponent, never, never, { "breadcrumb": { "alias": "p-breadcrumb"; "required": false; }; "serviceApi": { "alias": "p-service-api"; "required": false; }; "title": { "alias": "p-title"; "required": false; }; "autoRouter": { "alias": "p-auto-router"; "required": false; }; "fields": { "alias": "p-fields"; "required": false; }; }, { "changeVisibleColumns": "p-change-visible-columns"; "changeFixedColumns": "p-change-fixed-columns"; "columnRestoreManager": "p-restore-column-manager"; "sortBy": "p-sort-by"; }, never, never, true, never>;
|
|
3985
3997
|
}
|
|
3986
3998
|
|
|
3987
3999
|
/**
|
|
@@ -4487,6 +4499,7 @@ declare class PoPageDynamicTableComponent extends PoPageDynamicListBaseComponent
|
|
|
4487
4499
|
onQuickSearch(termTypedInQuickSearch: any): void;
|
|
4488
4500
|
onSort(sortedColumn: PoTableColumnSort): void;
|
|
4489
4501
|
onChangeVisibleColumns(value: any): void;
|
|
4502
|
+
onChangeFixedColumns(value: Array<string>): void;
|
|
4490
4503
|
onColumnRestoreManager(value: Array<string>): void;
|
|
4491
4504
|
onSortBy(sortedColumn: PoTableColumnSort): void;
|
|
4492
4505
|
showMore(): void;
|
|
Binary file
|