@onecx/angular-accelerator 5.19.2 → 5.19.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/esm2022/lib/components/column-group-selection/column-group-selection.component.mjs +5 -4
- package/esm2022/lib/components/custom-group-column-selector/custom-group-column-selector.component.mjs +15 -7
- package/esm2022/lib/components/data-sort-base/data-sort-base.mjs +2 -2
- package/esm2022/lib/components/data-table/data-table.component.mjs +5 -2
- package/esm2022/lib/components/interactive-data-view/interactive-data-view.component.mjs +16 -6
- package/fesm2022/onecx-angular-accelerator.mjs +38 -16
- package/fesm2022/onecx-angular-accelerator.mjs.map +1 -1
- package/lib/components/custom-group-column-selector/custom-group-column-selector.component.d.ts +3 -1
- package/lib/components/data-table/data-table.component.d.ts +1 -0
- package/package.json +1 -1
package/lib/components/custom-group-column-selector/custom-group-column-selector.component.d.ts
CHANGED
|
@@ -20,7 +20,9 @@ export interface CustomGroupColumnSelectorComponentState {
|
|
|
20
20
|
export declare class CustomGroupColumnSelectorComponent implements OnInit {
|
|
21
21
|
private translate;
|
|
22
22
|
columns: DataTableColumn[];
|
|
23
|
-
|
|
23
|
+
private _displayedColumns;
|
|
24
|
+
get displayedColumns(): DataTableColumn[];
|
|
25
|
+
set displayedColumns(value: DataTableColumn[]);
|
|
24
26
|
dialogTitle: string;
|
|
25
27
|
dialogTitleKey: string;
|
|
26
28
|
openButtonTitle: string;
|
|
@@ -209,6 +209,7 @@ export declare class DataTableComponent extends DataSortBase implements OnInit,
|
|
|
209
209
|
templatesObservables: Record<string, Observable<TemplateRef<any> | null>>;
|
|
210
210
|
constructor(locale: string, translateService: TranslateService, router: Router, injector: Injector, userService: UserService);
|
|
211
211
|
ngOnInit(): void;
|
|
212
|
+
translateColumnValues(columnValues: string[]): Observable<any>;
|
|
212
213
|
emitComponentStateChanged(state?: DataTableComponentState): void;
|
|
213
214
|
ngAfterContentInit(): void;
|
|
214
215
|
onSortColumnClick(sortColumn: string): void;
|