@po-ui/ng-components 21.18.0 → 21.19.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-po-chart-modal-table.component-ZnSFYVDt.mjs → po-ui-ng-components-po-chart-modal-table.component-CzvA7U-U.mjs} +4 -4
- package/fesm2022/{po-ui-ng-components-po-chart-modal-table.component-ZnSFYVDt.mjs.map → po-ui-ng-components-po-chart-modal-table.component-CzvA7U-U.mjs.map} +1 -1
- package/fesm2022/po-ui-ng-components.mjs +1260 -1473
- package/fesm2022/po-ui-ng-components.mjs.map +1 -1
- package/lib/components/po-table/po-table.component.d.ts +4 -35
- package/package.json +4 -4
- package/po-ui-ng-components-21.19.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/v21/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/types/po-ui-ng-components.d.ts +3 -34
- package/po-ui-ng-components-21.18.0.tgz +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
2
2
|
import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
|
|
3
3
|
import { DecimalPipe } from '@angular/common';
|
|
4
|
-
import {
|
|
4
|
+
import { AfterViewInit, ChangeDetectorRef, DoCheck, ElementRef, IterableDiffers, OnDestroy, OnInit, QueryList, Renderer2, TemplateRef } from '@angular/core';
|
|
5
5
|
import { PoDateService } from '../../services/po-date/po-date.service';
|
|
6
6
|
import { PoLanguageService } from '../../services/po-language/po-language.service';
|
|
7
7
|
import { PoNotificationService } from '../../services/po-notification/po-notification.service';
|
|
@@ -69,18 +69,13 @@ import { PoTableColumnSpacing } from './enums/po-table-spacing.enum';
|
|
|
69
69
|
* <file name="sample-po-table-draggable/sample-po-table-draggable.component.ts"> </file>
|
|
70
70
|
* </example>
|
|
71
71
|
*/
|
|
72
|
-
export declare class PoTableComponent extends PoTableBaseComponent implements
|
|
73
|
-
private readonly renderer;
|
|
72
|
+
export declare class PoTableComponent extends PoTableBaseComponent implements AfterViewInit, DoCheck, OnDestroy, OnInit {
|
|
74
73
|
private readonly changeDetector;
|
|
75
74
|
private readonly decimalPipe;
|
|
76
75
|
private readonly defaultService;
|
|
77
76
|
tableRowTemplate: PoTableRowTemplateDirective;
|
|
78
77
|
tableCellTemplate: PoTableCellTemplateDirective;
|
|
79
78
|
tableColumnTemplates: QueryList<PoTableColumnTemplateDirective>;
|
|
80
|
-
virtualScrollWrapper: ElementRef;
|
|
81
|
-
headerScrollContainer: ElementRef;
|
|
82
|
-
headerTableElement: ElementRef;
|
|
83
|
-
bodyTableElement: ElementRef;
|
|
84
79
|
noColumnsHeader: any;
|
|
85
80
|
poPopupComponent: PoPopupComponent;
|
|
86
81
|
modalDelete: PoModalComponent;
|
|
@@ -109,10 +104,9 @@ export declare class PoTableComponent extends PoTableBaseComponent implements Af
|
|
|
109
104
|
idRadio: string;
|
|
110
105
|
inputFieldValue: string;
|
|
111
106
|
JSON: JSON;
|
|
107
|
+
newOrderColumns: Array<PoTableColumn>;
|
|
112
108
|
sizeLoading: string;
|
|
113
109
|
headerWidth: number;
|
|
114
|
-
headerTableScrollWidth: number;
|
|
115
|
-
computedColumnWidths: Array<string>;
|
|
116
110
|
close: PoModalAction;
|
|
117
111
|
confirm: PoModalAction;
|
|
118
112
|
private _columnManagerTarget;
|
|
@@ -124,20 +118,6 @@ export declare class PoTableComponent extends PoTableBaseComponent implements Af
|
|
|
124
118
|
private scrollEvent$;
|
|
125
119
|
private subscriptionScrollEvent;
|
|
126
120
|
private readonly subscriptionService;
|
|
127
|
-
private resizeObserver;
|
|
128
|
-
private scrollSyncListener;
|
|
129
|
-
private containerScrollSyncListener;
|
|
130
|
-
private virtualScrollOverflowConfigured;
|
|
131
|
-
private syncScheduled;
|
|
132
|
-
private lastColumnsKey;
|
|
133
|
-
private lastHeaderHeight;
|
|
134
|
-
private readonly SELECTOR_BODY_ROW;
|
|
135
|
-
private readonly SELECTOR_HEADER_CELLS;
|
|
136
|
-
private readonly SELECTOR_HEADER_MAIN_CELLS;
|
|
137
|
-
private readonly SELECTOR_BODY_CELLS;
|
|
138
|
-
private readonly SELECTOR_BODY_MAIN_CELLS;
|
|
139
|
-
private readonly SELECTOR_CDK_CONTENT_WRAPPER;
|
|
140
|
-
private readonly SELECTOR_FIXED_INNER_CONTAINER;
|
|
141
121
|
private readonly clickListener;
|
|
142
122
|
private readonly resizeListener;
|
|
143
123
|
set columnManagerTarget(value: ElementRef);
|
|
@@ -159,11 +139,10 @@ export declare class PoTableComponent extends PoTableBaseComponent implements Af
|
|
|
159
139
|
get hasVisibleSubtitleColumns(): boolean;
|
|
160
140
|
get isSingleAction(): boolean;
|
|
161
141
|
get isDraggable(): boolean;
|
|
142
|
+
get inverseOfTranslation(): string;
|
|
162
143
|
ngOnInit(): void;
|
|
163
144
|
changeHeaderWidth(): void;
|
|
164
145
|
ngAfterViewInit(): void;
|
|
165
|
-
ngAfterViewChecked(): void;
|
|
166
|
-
private shouldScheduleVirtualScrollColumnSyncWithoutWidths;
|
|
167
146
|
showMoreInfiniteScroll({ target }: {
|
|
168
147
|
target: any;
|
|
169
148
|
}): void;
|
|
@@ -319,14 +298,4 @@ export declare class PoTableComponent extends PoTableBaseComponent implements Af
|
|
|
319
298
|
private setTableOpacity;
|
|
320
299
|
private verifyChangeHeightInFooter;
|
|
321
300
|
private toggleSelect;
|
|
322
|
-
private configureVirtualScrollOverflow;
|
|
323
|
-
private applyVirtualScrollStyles;
|
|
324
|
-
private registerScrollSyncListeners;
|
|
325
|
-
private syncHeaderScrollLeft;
|
|
326
|
-
private setupColumnWidthSync;
|
|
327
|
-
private clearColumnWidths;
|
|
328
|
-
private removeCellWidthStyles;
|
|
329
|
-
private syncColumnWidths;
|
|
330
|
-
private measureCellWidths;
|
|
331
|
-
private syncHeaderTableWidth;
|
|
332
301
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@po-ui/ng-components",
|
|
3
|
-
"version": "21.
|
|
3
|
+
"version": "21.19.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.4",
|
|
25
|
-
"@po-ui/style": "21.
|
|
26
|
-
"@po-ui/ng-schematics": "21.
|
|
25
|
+
"@po-ui/style": "21.19.0",
|
|
26
|
+
"@po-ui/ng-schematics": "21.19.0",
|
|
27
27
|
"driver.js": "~1.4.0",
|
|
28
28
|
"echarts": "^5.6.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.
|
|
42
|
+
"@po-ui/style": "21.19.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.
|
|
21
|
+
(0, package_config_1.addPackageToPackageJson)(tree, '@po-ui/ng-components', '21.19.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.
|
|
9
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.19.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.
|
|
14
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.19.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.
|
|
9
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.19.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.
|
|
9
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.19.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.
|
|
43
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.19.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.
|
|
47
|
+
(0, package_config_1.updatePackageJson)('21.19.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.
|
|
43
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.19.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.
|
|
47
|
+
(0, package_config_1.updatePackageJson)('21.19.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.
|
|
13
|
+
updatePackageJson('21.19.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.
|
|
43
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.19.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.
|
|
47
|
+
(0, package_config_1.updatePackageJson)('21.19.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.
|
|
12
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.19.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.
|
|
10
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.19.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.
|
|
10
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.19.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.
|
|
10
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.19.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.
|
|
9
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.19.0', changes_1.updateDepedenciesVersion), postUpdate()]);
|
|
10
10
|
}
|
|
11
11
|
function postUpdate() {
|
|
12
12
|
return (_, context) => {
|
|
@@ -9902,18 +9902,13 @@ declare abstract class PoTableBaseComponent implements OnChanges, OnDestroy {
|
|
|
9902
9902
|
* <file name="sample-po-table-draggable/sample-po-table-draggable.component.ts"> </file>
|
|
9903
9903
|
* </example>
|
|
9904
9904
|
*/
|
|
9905
|
-
declare class PoTableComponent extends PoTableBaseComponent implements
|
|
9906
|
-
private readonly renderer;
|
|
9905
|
+
declare class PoTableComponent extends PoTableBaseComponent implements AfterViewInit, DoCheck, OnDestroy, OnInit {
|
|
9907
9906
|
private readonly changeDetector;
|
|
9908
9907
|
private readonly decimalPipe;
|
|
9909
9908
|
private readonly defaultService;
|
|
9910
9909
|
tableRowTemplate: PoTableRowTemplateDirective;
|
|
9911
9910
|
tableCellTemplate: PoTableCellTemplateDirective;
|
|
9912
9911
|
tableColumnTemplates: QueryList<PoTableColumnTemplateDirective>;
|
|
9913
|
-
virtualScrollWrapper: ElementRef;
|
|
9914
|
-
headerScrollContainer: ElementRef;
|
|
9915
|
-
headerTableElement: ElementRef;
|
|
9916
|
-
bodyTableElement: ElementRef;
|
|
9917
9912
|
noColumnsHeader: any;
|
|
9918
9913
|
poPopupComponent: PoPopupComponent;
|
|
9919
9914
|
modalDelete: PoModalComponent;
|
|
@@ -9942,10 +9937,9 @@ declare class PoTableComponent extends PoTableBaseComponent implements AfterView
|
|
|
9942
9937
|
idRadio: string;
|
|
9943
9938
|
inputFieldValue: string;
|
|
9944
9939
|
JSON: JSON;
|
|
9940
|
+
newOrderColumns: Array<PoTableColumn>;
|
|
9945
9941
|
sizeLoading: string;
|
|
9946
9942
|
headerWidth: number;
|
|
9947
|
-
headerTableScrollWidth: number;
|
|
9948
|
-
computedColumnWidths: Array<string>;
|
|
9949
9943
|
close: PoModalAction;
|
|
9950
9944
|
confirm: PoModalAction;
|
|
9951
9945
|
private _columnManagerTarget;
|
|
@@ -9957,20 +9951,6 @@ declare class PoTableComponent extends PoTableBaseComponent implements AfterView
|
|
|
9957
9951
|
private scrollEvent$;
|
|
9958
9952
|
private subscriptionScrollEvent;
|
|
9959
9953
|
private readonly subscriptionService;
|
|
9960
|
-
private resizeObserver;
|
|
9961
|
-
private scrollSyncListener;
|
|
9962
|
-
private containerScrollSyncListener;
|
|
9963
|
-
private virtualScrollOverflowConfigured;
|
|
9964
|
-
private syncScheduled;
|
|
9965
|
-
private lastColumnsKey;
|
|
9966
|
-
private lastHeaderHeight;
|
|
9967
|
-
private readonly SELECTOR_BODY_ROW;
|
|
9968
|
-
private readonly SELECTOR_HEADER_CELLS;
|
|
9969
|
-
private readonly SELECTOR_HEADER_MAIN_CELLS;
|
|
9970
|
-
private readonly SELECTOR_BODY_CELLS;
|
|
9971
|
-
private readonly SELECTOR_BODY_MAIN_CELLS;
|
|
9972
|
-
private readonly SELECTOR_CDK_CONTENT_WRAPPER;
|
|
9973
|
-
private readonly SELECTOR_FIXED_INNER_CONTAINER;
|
|
9974
9954
|
private readonly clickListener;
|
|
9975
9955
|
private readonly resizeListener;
|
|
9976
9956
|
set columnManagerTarget(value: ElementRef);
|
|
@@ -9992,11 +9972,10 @@ declare class PoTableComponent extends PoTableBaseComponent implements AfterView
|
|
|
9992
9972
|
get hasVisibleSubtitleColumns(): boolean;
|
|
9993
9973
|
get isSingleAction(): boolean;
|
|
9994
9974
|
get isDraggable(): boolean;
|
|
9975
|
+
get inverseOfTranslation(): string;
|
|
9995
9976
|
ngOnInit(): void;
|
|
9996
9977
|
changeHeaderWidth(): void;
|
|
9997
9978
|
ngAfterViewInit(): void;
|
|
9998
|
-
ngAfterViewChecked(): void;
|
|
9999
|
-
private shouldScheduleVirtualScrollColumnSyncWithoutWidths;
|
|
10000
9979
|
showMoreInfiniteScroll({ target }: {
|
|
10001
9980
|
target: any;
|
|
10002
9981
|
}): void;
|
|
@@ -10152,16 +10131,6 @@ declare class PoTableComponent extends PoTableBaseComponent implements AfterView
|
|
|
10152
10131
|
private setTableOpacity;
|
|
10153
10132
|
private verifyChangeHeightInFooter;
|
|
10154
10133
|
private toggleSelect;
|
|
10155
|
-
private configureVirtualScrollOverflow;
|
|
10156
|
-
private applyVirtualScrollStyles;
|
|
10157
|
-
private registerScrollSyncListeners;
|
|
10158
|
-
private syncHeaderScrollLeft;
|
|
10159
|
-
private setupColumnWidthSync;
|
|
10160
|
-
private clearColumnWidths;
|
|
10161
|
-
private removeCellWidthStyles;
|
|
10162
|
-
private syncColumnWidths;
|
|
10163
|
-
private measureCellWidths;
|
|
10164
|
-
private syncHeaderTableWidth;
|
|
10165
10134
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoTableComponent, never>;
|
|
10166
10135
|
static ɵcmp: i0.ɵɵComponentDeclaration<PoTableComponent, "po-table", never, {}, {}, ["tableRowTemplate", "tableCellTemplate", "tableColumnTemplates"], never, false, never>;
|
|
10167
10136
|
}
|
|
Binary file
|