APPS-1568 ACA should be extended to support visibility rules for Document List columns (#7685)

* APPS-1568 Extended rules functionality for Document List columns
This commit is contained in:
Shubham Bansal 2022-06-27 16:15:54 +00:00 committed by GitHub
parent a6ed124005
commit b14332d271
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,4 +27,8 @@ export interface DocumentListPresetRef extends ExtensionElement {
template: string; template: string;
desktopOnly: boolean; desktopOnly: boolean;
sortingKey: string; sortingKey: string;
rules?: {
[key: string]: string;
visible?: string;
};
} }