2024-07-18 17:59:04 +03:00
|
|
|
<!--
|
|
|
|
|
|
|
|
|
|
Copyright © 2016-2024 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.
|
|
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
<button *ngIf="asButton && !strokedButton && !flatButton"
|
|
|
|
|
[disabled]="timezoneDisabled"
|
2024-07-29 18:47:48 +03:00
|
|
|
[matTooltip]="tooltipValue()"
|
|
|
|
|
[matTooltipPosition]="tooltipPosition"
|
2024-07-18 17:59:04 +03:00
|
|
|
type="button"
|
|
|
|
|
mat-raised-button color="primary"
|
|
|
|
|
(click)="toggleTimezone($event)">
|
|
|
|
|
<!-- <mat-icon class="material-icons">query_builder</mat-icon>-->
|
|
|
|
|
<span>{{displayValue()}}</span>
|
|
|
|
|
</button>
|
|
|
|
|
<button *ngIf="asButton && strokedButton"
|
|
|
|
|
[disabled]="timezoneDisabled"
|
2024-07-29 18:47:48 +03:00
|
|
|
[matTooltip]="tooltipValue()"
|
|
|
|
|
[matTooltipPosition]="tooltipPosition"
|
2024-07-18 17:59:04 +03:00
|
|
|
type="button"
|
|
|
|
|
mat-stroked-button color="primary"
|
|
|
|
|
(click)="toggleTimezone($event)">
|
|
|
|
|
<!-- <mat-icon class="material-icons">query_builder</mat-icon>-->
|
|
|
|
|
<span>{{displayValue()}}</span>
|
|
|
|
|
</button>
|
|
|
|
|
<button *ngIf="asButton && flatButton"
|
|
|
|
|
[disabled]="timezoneDisabled"
|
2024-07-29 18:47:48 +03:00
|
|
|
[matTooltip]="tooltipValue()"
|
|
|
|
|
[matTooltipPosition]="tooltipPosition"
|
2024-07-18 17:59:04 +03:00
|
|
|
type="button"
|
|
|
|
|
mat-button
|
|
|
|
|
(click)="toggleTimezone($event)">
|
|
|
|
|
<!-- <mat-icon class="material-icons">query_builder</mat-icon>-->
|
|
|
|
|
<span>{{displayValue()}}</span>
|
|
|
|
|
</button>
|
|
|
|
|
<section *ngIf="!asButton"
|
2024-07-29 18:47:48 +03:00
|
|
|
class="tb-timezone"
|
2024-07-18 17:59:04 +03:00
|
|
|
[class]="{'no-padding': noPadding}"
|
2024-07-29 18:47:48 +03:00
|
|
|
[matTooltip]="tooltipValue()"
|
2024-07-18 17:59:04 +03:00
|
|
|
[matTooltipPosition]="tooltipPosition"
|
|
|
|
|
[style]="timezoneComponentStyle"
|
|
|
|
|
(click)="toggleTimezone($event)">
|
|
|
|
|
<tb-icon *ngIf="computedTimezoneStyle.showIcon && computedTimezoneStyle.iconPosition === 'left'"
|
|
|
|
|
[style]="timezoneIconStyle">{{ computedTimezoneStyle.icon }}</tb-icon>
|
2024-07-29 18:47:48 +03:00
|
|
|
<div class="tb-timezone-label" [fxHide]="hideLabel">
|
|
|
|
|
{{timezoneInfo}}
|
2024-07-18 17:59:04 +03:00
|
|
|
</div>
|
|
|
|
|
<tb-icon *ngIf="computedTimezoneStyle.showIcon && computedTimezoneStyle.iconPosition === 'right'"
|
|
|
|
|
[style]="timezoneIconStyle">{{ computedTimezoneStyle.icon }}</tb-icon>
|
|
|
|
|
</section>
|