@acorex/components 21.0.2-next.3 → 21.0.2-next.4
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/acorex-components-data-pager.mjs +19 -3
- package/fesm2022/acorex-components-data-pager.mjs.map +1 -1
- package/fesm2022/acorex-components-data-table.mjs +14 -14
- package/fesm2022/acorex-components-data-table.mjs.map +1 -1
- package/package.json +3 -3
- package/types/acorex-components-data-pager.d.ts +2 -0
- package/types/acorex-components-data-table.d.ts +8 -8
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/components",
|
|
3
|
-
"version": "21.0.2-next.
|
|
3
|
+
"version": "21.0.2-next.4",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@acorex/core": "21.0.2-next.
|
|
6
|
-
"@acorex/cdk": "21.0.2-next.
|
|
5
|
+
"@acorex/core": "21.0.2-next.4",
|
|
6
|
+
"@acorex/cdk": "21.0.2-next.4",
|
|
7
7
|
"polytype": ">=0.17.0",
|
|
8
8
|
"angular-imask": ">=7.6.1",
|
|
9
9
|
"gridstack": ">=12.0.0",
|
|
@@ -164,6 +164,8 @@ declare class AXDataPagerNumericSelectorComponent extends AXDataPagerChild {
|
|
|
164
164
|
protected _currentPage: number;
|
|
165
165
|
protected _lastPage: number;
|
|
166
166
|
protected _loading: boolean;
|
|
167
|
+
private localeService;
|
|
168
|
+
protected rtlstatus: i0.Signal<boolean>;
|
|
167
169
|
/**
|
|
168
170
|
* @ignore
|
|
169
171
|
*/
|
|
@@ -108,6 +108,10 @@ declare abstract class AXDataTableColumnComponent {
|
|
|
108
108
|
fixed: 'start' | 'end' | undefined;
|
|
109
109
|
allowSorting: boolean;
|
|
110
110
|
allowResizing: boolean;
|
|
111
|
+
/**
|
|
112
|
+
* When true, shows the cell content as tooltip on hover (via `axTooltip`).
|
|
113
|
+
*/
|
|
114
|
+
hasTitle: boolean;
|
|
111
115
|
sortIndex: number | undefined;
|
|
112
116
|
sortOrder: AXSortOrder | undefined;
|
|
113
117
|
abstract get renderCellTemplate(): TemplateRef<unknown>;
|
|
@@ -247,7 +251,7 @@ declare class AXDataTableTextColumnComponent extends AXDataTableColumnComponent
|
|
|
247
251
|
*/
|
|
248
252
|
get name(): string;
|
|
249
253
|
/**
|
|
250
|
-
* Returns the display text for a row cell. Used for cell tooltip when
|
|
254
|
+
* Returns the display text for a row cell. Used for cell tooltip when the column has `hasTitle`.
|
|
251
255
|
*/
|
|
252
256
|
getCellDisplayText(rowData: unknown): string;
|
|
253
257
|
/**
|
|
@@ -264,7 +268,7 @@ declare class AXDataTableTextColumnComponent extends AXDataTableColumnComponent
|
|
|
264
268
|
*/
|
|
265
269
|
formatOptions: AXFormatOptions;
|
|
266
270
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDataTableTextColumnComponent, never>;
|
|
267
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXDataTableTextColumnComponent, "ax-text-column", never, { "width": { "alias": "width"; "required": false; }; "caption": { "alias": "caption"; "required": false; }; "allowSorting": { "alias": "allowSorting"; "required": false; }; "allowResizing": { "alias": "allowResizing"; "required": false; }; "fixed": { "alias": "fixed"; "required": false; }; "customExpandIcon": { "alias": "customExpandIcon"; "required": false; }; "customCollapseIcon": { "alias": "customCollapseIcon"; "required": false; }; "dataField": { "alias": "dataField"; "required": false; }; "expandHandler": { "alias": "expandHandler"; "required": false; }; "wrapText": { "alias": "wrapText"; "required": false; }; "cellTemplate": { "alias": "cellTemplate"; "required": false; }; "footerTemplate": { "alias": "footerTemplate"; "required": false; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; }; "format": { "alias": "format"; "required": false; }; "formatOptions": { "alias": "formatOptions"; "required": false; }; }, {}, never, never, true, never>;
|
|
271
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDataTableTextColumnComponent, "ax-text-column", never, { "width": { "alias": "width"; "required": false; }; "caption": { "alias": "caption"; "required": false; }; "allowSorting": { "alias": "allowSorting"; "required": false; }; "allowResizing": { "alias": "allowResizing"; "required": false; }; "fixed": { "alias": "fixed"; "required": false; }; "hasTitle": { "alias": "hasTitle"; "required": false; }; "customExpandIcon": { "alias": "customExpandIcon"; "required": false; }; "customCollapseIcon": { "alias": "customCollapseIcon"; "required": false; }; "dataField": { "alias": "dataField"; "required": false; }; "expandHandler": { "alias": "expandHandler"; "required": false; }; "wrapText": { "alias": "wrapText"; "required": false; }; "cellTemplate": { "alias": "cellTemplate"; "required": false; }; "footerTemplate": { "alias": "footerTemplate"; "required": false; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; }; "format": { "alias": "format"; "required": false; }; "formatOptions": { "alias": "formatOptions"; "required": false; }; }, {}, never, never, true, never>;
|
|
268
272
|
}
|
|
269
273
|
|
|
270
274
|
type AXRowCommandItem = AXButtonItemListItem & {
|
|
@@ -621,10 +625,6 @@ declare class AXDataTableComponent extends AXBaseDataTable implements OnInit, Af
|
|
|
621
625
|
* @ignore
|
|
622
626
|
*/
|
|
623
627
|
customDataPager: AXDataPagerComponent;
|
|
624
|
-
/**
|
|
625
|
-
* When true, shows the cell content as tooltip (title attribute) on hover.
|
|
626
|
-
*/
|
|
627
|
-
title: boolean;
|
|
628
628
|
/**
|
|
629
629
|
* @ignore
|
|
630
630
|
*/
|
|
@@ -860,7 +860,7 @@ declare class AXDataTableComponent extends AXBaseDataTable implements OnInit, Af
|
|
|
860
860
|
ngAfterViewInit(): void;
|
|
861
861
|
private captureAutoFitIntentColumns;
|
|
862
862
|
/**
|
|
863
|
-
* Returns the display text for a cell. Used for the
|
|
863
|
+
* Returns the display text for a cell. Used for the cell tooltip when the column has `hasTitle`.
|
|
864
864
|
*/
|
|
865
865
|
protected getCellTooltipText(column: AXDataTableColumnComponent, rowData: unknown): string;
|
|
866
866
|
/**
|
|
@@ -992,7 +992,7 @@ declare class AXDataTableComponent extends AXBaseDataTable implements OnInit, Af
|
|
|
992
992
|
headerOnly?: boolean;
|
|
993
993
|
}): void;
|
|
994
994
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDataTableComponent, never>;
|
|
995
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXDataTableComponent, "ax-data-table", never, { "dataSource": { "alias": "dataSource"; "required": false; }; "selectedRows": { "alias": "selectedRows"; "required": false; }; "parentField": { "alias": "parentField"; "required": false; }; "hasChildrenField": { "alias": "hasChildrenField"; "required": false; }; "rowDetailsTemplate": { "alias": "rowDetailsTemplate"; "required": false; }; "
|
|
995
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDataTableComponent, "ax-data-table", never, { "dataSource": { "alias": "dataSource"; "required": false; }; "selectedRows": { "alias": "selectedRows"; "required": false; }; "parentField": { "alias": "parentField"; "required": false; }; "hasChildrenField": { "alias": "hasChildrenField"; "required": false; }; "rowDetailsTemplate": { "alias": "rowDetailsTemplate"; "required": false; }; "rowTemplate": { "alias": "rowTemplate"; "required": false; }; "emptyTemplate": { "alias": "emptyTemplate"; "required": false; }; "noDataTemplate": { "alias": "noDataTemplate"; "required": false; }; "alternative": { "alias": "alternative"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "fixedHeader": { "alias": "fixedHeader"; "required": false; }; "showFooter": { "alias": "showFooter"; "required": false; }; "fixedFooter": { "alias": "fixedFooter"; "required": false; }; "itemHeight": { "alias": "itemHeight"; "required": false; }; "allowReordering": { "alias": "allowReordering"; "required": false; }; "paging": { "alias": "paging"; "required": false; }; "fetchDataMode": { "alias": "fetchDataMode"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "focusedRow": { "alias": "focusedRow"; "required": false; }; }, { "selectedRowsChange": "selectedRowsChange"; "focusedRowChange": "focusedRowChange"; "onRowClick": "onRowClick"; "onRowDbClick": "onRowDbClick"; "onColumnsOrderChanged": "onColumnsOrderChanged"; "onColumnSizeChanged": "onColumnSizeChanged"; "onPageChanged": "onPageChanged"; }, ["customDataPager", "columns"], ["ax-header", "ax-data-pager", "ax-footer"], true, never>;
|
|
996
996
|
}
|
|
997
997
|
|
|
998
998
|
declare class AXDataTableModule {
|