carbon-components-angular 5.58.2 → 5.59.0
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/dialog/overflow-menu/overflow-menu.component.d.ts +1 -1
- package/docs/documentation/components/OverflowMenu.html +2 -2
- package/docs/documentation/js/search/search_index.js +2 -2
- package/docs/documentation/modules/TimePickerModule/dependencies.svg +4 -4
- package/docs/documentation/modules/TimePickerModule.html +4 -4
- package/docs/documentation/modules/TimePickerSelectModule/dependencies.svg +30 -30
- package/docs/documentation/modules/TimePickerSelectModule.html +30 -30
- package/docs/documentation/modules/ToggleModule/dependencies.svg +26 -26
- package/docs/documentation/modules/ToggleModule.html +26 -26
- package/docs/documentation/modules/ToggletipModule/dependencies.svg +4 -4
- package/docs/documentation/modules/ToggletipModule.html +4 -4
- package/docs/documentation/modules/TooltipModule/dependencies.svg +28 -28
- package/docs/documentation/modules/TooltipModule.html +28 -28
- package/docs/documentation/modules/TreeviewModule/dependencies.svg +34 -34
- package/docs/documentation/modules/TreeviewModule.html +34 -34
- package/docs/documentation/modules/UIShellModule/dependencies.svg +4 -4
- package/docs/documentation/modules/UIShellModule.html +4 -4
- package/docs/documentation.json +72 -72
- package/docs/storybook/iframe.html +1 -1
- package/docs/storybook/{main.d00e3563.iframe.bundle.js → main.4d0fdfae.iframe.bundle.js} +1 -1
- package/docs/storybook/project.json +1 -1
- package/esm2020/dialog/overflow-menu/overflow-menu.component.mjs +1 -1
- package/fesm2015/carbon-components-angular-dialog.mjs.map +1 -1
- package/fesm2020/carbon-components-angular-dialog.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -47,7 +47,7 @@ export declare class OverflowMenu extends BaseIconButton {
|
|
|
47
47
|
buttonLabel: any;
|
|
48
48
|
description: any;
|
|
49
49
|
flip: boolean;
|
|
50
|
-
placement: "bottom" | "top";
|
|
50
|
+
placement: "bottom" | "top" | "bottom,top" | "top,bottom";
|
|
51
51
|
open: boolean;
|
|
52
52
|
openChange: EventEmitter<boolean>;
|
|
53
53
|
/**
|
|
@@ -610,7 +610,7 @@
|
|
|
610
610
|
</tr>
|
|
611
611
|
<tr>
|
|
612
612
|
<td class="col-md-4">
|
|
613
|
-
<i>Type : </i> <code>"bottom" | "top"</code>
|
|
613
|
+
<i>Type : </i> <code>"bottom" | "top" | "bottom,top" | "top,bottom"</code>
|
|
614
614
|
|
|
615
615
|
</td>
|
|
616
616
|
</tr>
|
|
@@ -1242,7 +1242,7 @@ export class OverflowMenu extends BaseIconButton {
|
|
|
1242
1242
|
|
|
1243
1243
|
@Input() flip = false;
|
|
1244
1244
|
|
|
1245
|
-
@Input() placement: "bottom" | "top" = "bottom";
|
|
1245
|
+
@Input() placement: "bottom" | "top" | "bottom,top" | "top,bottom" = "bottom";
|
|
1246
1246
|
|
|
1247
1247
|
@Input() open = false;
|
|
1248
1248
|
|