2019-12-06 17:53:19 +09:00
|
|
|
<mat-button-toggle-group
|
|
|
|
class="ucap-split-button-container"
|
|
|
|
[matMenuTriggerFor]="menu"
|
|
|
|
[disabled]="disabled"
|
|
|
|
#matMenuTrigger="matMenuTrigger"
|
|
|
|
>
|
2019-12-26 11:19:43 +09:00
|
|
|
<mat-button-toggle
|
|
|
|
color="primary"
|
|
|
|
ucapDebounceClick
|
|
|
|
(debounceClick)="onClick($event)"
|
|
|
|
>
|
2019-12-06 17:53:19 +09:00
|
|
|
<ng-content></ng-content>
|
|
|
|
</mat-button-toggle>
|
|
|
|
|
|
|
|
<mat-button-toggle color="primary" (click)="onClickSplit($event)">
|
|
|
|
<span
|
|
|
|
class="mdi mdi-24px"
|
|
|
|
[class.mdi-menu-up]="splitOpened"
|
|
|
|
[class.mdi-menu-down]="!splitOpened"
|
|
|
|
></span>
|
|
|
|
</mat-button-toggle>
|
|
|
|
</mat-button-toggle-group>
|