2021-10-06 21:03:29 +03:00
|
|
|
<!--
|
|
|
|
|
|
|
|
|
|
Copyright © 2016-2021 The Thingsboard Authors
|
|
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
|
|
|
|
|
|
|
|
|
-->
|
2021-10-13 20:35:10 +03:00
|
|
|
<button #toggleHelpButton
|
2021-10-18 13:10:11 +03:00
|
|
|
*ngIf="!textMode"
|
|
|
|
|
mat-icon-button
|
|
|
|
|
color="primary"
|
2021-10-13 20:35:10 +03:00
|
|
|
class="tb-help-popup-button tb-mat-32"
|
|
|
|
|
type="button"
|
|
|
|
|
(click)="toggleHelp()"
|
|
|
|
|
matTooltip="{{'help.show-help' | translate}}"
|
|
|
|
|
matTooltipPosition="above">
|
|
|
|
|
<mat-icon class="material-icons">{{popoverVisible ? 'help' : 'help_outline'}}</mat-icon>
|
|
|
|
|
<mat-spinner *ngIf="popoverVisible && !popoverReady" class="tb-help-popup-button-loading" mode="indeterminate" diameter="20" strokeWidth="2"></mat-spinner>
|
|
|
|
|
</button>
|
2021-10-18 13:10:11 +03:00
|
|
|
<button #toggleHelpTextButton
|
|
|
|
|
*ngIf="textMode"
|
|
|
|
|
mat-button
|
|
|
|
|
color="primary"
|
|
|
|
|
class="tb-help-popup-text-button"
|
|
|
|
|
[ngClass]="{'mat-stroked-button': popoverVisible && popoverReady}"
|
|
|
|
|
(click)="toggleHelp()">
|
|
|
|
|
<ng-container *ngIf="triggerSafeHtml">
|
|
|
|
|
<span [style]="triggerStyle" [innerHTML]="triggerSafeHtml"></span>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<mat-icon *ngIf="!popoverVisible || popoverReady" class="tb-mat-16">open_in_new</mat-icon>
|
|
|
|
|
<mat-spinner *ngIf="popoverVisible && !popoverReady" mode="indeterminate" diameter="16" strokeWidth="2"></mat-spinner>
|
|
|
|
|
</button>
|