@anzusystems/common-admin 1.47.0-beta.64 → 1.47.0-beta.65
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.
|
@@ -3557,7 +3557,7 @@ declare const commonConfig: {
|
|
|
3557
3557
|
};
|
|
3558
3558
|
};
|
|
3559
3559
|
|
|
3560
|
-
export declare function createDatatableColumnsConfig(config: ColumnConfig[], columnsHidden: Ref<Array<string>>, system?: string | undefined, subject?: string | undefined, disableActions?: boolean,
|
|
3560
|
+
export declare function createDatatableColumnsConfig(config: ColumnConfig[], columnsHidden: Ref<Array<string>>, system?: string | undefined, subject?: string | undefined, disableActions?: boolean, customInitialPagination?: Pagination | undefined, customI18n?: undefined | any, showExpand?: undefined | boolean): {
|
|
3561
3561
|
columnsAll: {
|
|
3562
3562
|
key: string;
|
|
3563
3563
|
title?: string;
|
|
@@ -3570,7 +3570,7 @@ export declare function createDatatableColumnsConfig(config: ColumnConfig[], col
|
|
|
3570
3570
|
updateSortBy: (sortBy: {
|
|
3571
3571
|
key: string;
|
|
3572
3572
|
order: "asc" | "desc";
|
|
3573
|
-
} | undefined) => void;
|
|
3573
|
+
} | undefined | null) => void;
|
|
3574
3574
|
pagination: Pagination;
|
|
3575
3575
|
};
|
|
3576
3576
|
|