Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | 1x | /**
* Copyright (c) Siemens 2016 - 2025
* SPDX-License-Identifier: MIT
*/
import { ChangeDetectionStrategy, Component } from '@angular/core';
/**
* Creates an actions container for the side-panel.
* This action will remain visible if the side-panel is collapsed.
*
* @example
* ```html
* <si-side-panel-content>
* <si-side-panel-actions>
* <button
* type="button"
* si-side-panel-action
* icon="element-alarm-background-filled"
* iconColor="status-danger"
* stackedIcon="element-alarm-tick"
* stackedIconColor="text-body"
* (click)="action()"
* >
* Action
* </button>
* </si-side-panel-actions>
* </si-side-panel-content>
* ```
*/
@Component({
selector: 'si-side-panel-actions',
template: '<ng-content />',
styleUrl: './si-side-panel-actions.component.scss',
changeDetection: ChangeDetectionStrategy.OnPush
})
export class SiSidePanelActionsComponent {}
|