@anzusystems/common-admin 1.47.0-beta.63 → 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;
|
|
@@ -3567,7 +3567,10 @@ export declare function createDatatableColumnsConfig(config: ColumnConfig[], col
|
|
|
3567
3567
|
}[];
|
|
3568
3568
|
columnsVisible: ComputedRef<any>;
|
|
3569
3569
|
columnsHidden: Ref<string[], string[]>;
|
|
3570
|
-
updateSortBy: (sortBy:
|
|
3570
|
+
updateSortBy: (sortBy: {
|
|
3571
|
+
key: string;
|
|
3572
|
+
order: "asc" | "desc";
|
|
3573
|
+
} | undefined | null) => void;
|
|
3571
3574
|
pagination: Pagination;
|
|
3572
3575
|
};
|
|
3573
3576
|
|