@bitrise/bitkit 9.16.4 → 9.16.5
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.
package/package.json
CHANGED
|
@@ -9,7 +9,16 @@ export default {
|
|
|
9
9
|
} as ComponentMeta<typeof OverflowMenu>;
|
|
10
10
|
|
|
11
11
|
export const WithProps: ComponentStory<typeof OverflowMenu> = (props) => (
|
|
12
|
-
<Flex direction="
|
|
12
|
+
<Flex direction="column" alignItems="flex-end" minHeight="400px">
|
|
13
|
+
<OverflowMenu {...props}>
|
|
14
|
+
<OverflowMenuItem iconName="PlusAdd">Add member</OverflowMenuItem>
|
|
15
|
+
<OverflowMenuItem iconName="MinusRemove">Remove member</OverflowMenuItem>
|
|
16
|
+
<OverflowMenuItem iconName="Filter">Assign access to apps</OverflowMenuItem>
|
|
17
|
+
<OverflowMenuItem iconName="Pencil">Rename group</OverflowMenuItem>
|
|
18
|
+
<OverflowMenuItem iconName="Trash" isDanger>
|
|
19
|
+
Delete group
|
|
20
|
+
</OverflowMenuItem>
|
|
21
|
+
</OverflowMenu>
|
|
13
22
|
<OverflowMenu {...props}>
|
|
14
23
|
<OverflowMenuItem iconName="PlusAdd">Add member</OverflowMenuItem>
|
|
15
24
|
<OverflowMenuItem iconName="MinusRemove">Remove member</OverflowMenuItem>
|