@ansible/ansible-ui-framework 2.4.2573 → 2.4.2574
Sign up to get free protection for your applications and to get access to all the features.
@@ -55,11 +55,13 @@ export interface IPageActionButtonMultiple<T extends object> extends IPageAction
|
|
55
55
|
}
|
56
56
|
export interface IPageActionLink extends IPageActionNoneCommon {
|
57
57
|
type: PageActionType.Link;
|
58
|
+
selection: PageActionSelection.None;
|
58
59
|
href: string;
|
59
60
|
variant?: ButtonVariant;
|
60
61
|
}
|
61
62
|
export interface IPageActionLinkSingle<T extends object> extends IPageActionSingleCommon<T> {
|
62
63
|
type: PageActionType.Link;
|
64
|
+
selection: PageActionSelection.Single;
|
63
65
|
href: (item: T) => string;
|
64
66
|
variant?: ButtonVariant;
|
65
67
|
}
|