@anzusystems/common-admin 1.47.0-beta.55 → 1.47.0-beta.56
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.
|
@@ -3488,6 +3488,7 @@ declare type ColumnConfig = {
|
|
|
3488
3488
|
title?: string;
|
|
3489
3489
|
sortable?: boolean;
|
|
3490
3490
|
fixed?: boolean;
|
|
3491
|
+
maxWidth?: number;
|
|
3491
3492
|
};
|
|
3492
3493
|
|
|
3493
3494
|
declare type ColumnInternalValues = {
|
|
@@ -3551,6 +3552,7 @@ export declare function createDatatableColumnsConfig(config: ColumnConfig[], col
|
|
|
3551
3552
|
title?: string;
|
|
3552
3553
|
sortable: boolean;
|
|
3553
3554
|
fixed: boolean;
|
|
3555
|
+
maxWidth?: number;
|
|
3554
3556
|
}[];
|
|
3555
3557
|
columnsVisible: ComputedRef<any>;
|
|
3556
3558
|
columnsHidden: Ref<string[], string[]>;
|
|
@@ -8422,6 +8424,7 @@ export declare function useSubjectSelect<TItem>(datatableConfig: any, datatableH
|
|
|
8422
8424
|
title?: string;
|
|
8423
8425
|
sortable: boolean;
|
|
8424
8426
|
fixed: boolean;
|
|
8427
|
+
maxWidth?: number;
|
|
8425
8428
|
}[];
|
|
8426
8429
|
filterTouched: Ref<boolean, boolean>;
|
|
8427
8430
|
loading: Ref<boolean, boolean>;
|