Я хочу, чтобы на компоненте p-календаря была только кнопка Очистить.
myComponent.html
<p-calendar
value="#{property.propDate}" id="date"
[showIcon]="true"
[utc]='true'
placeholder="{{ timePickerPlaceHolder }}"
[showTransitionOptions]="'100ms'"
[hideTransitionOptions]="'100ms'"
[inputStyle]="{ width: '248px' }"
[(ngModel)]="value"
[defaultDate]="defaultDate"
showTime="true"
[readonlyInput]="true"
hourFormat="24"
showButtonBar="true"
[todayButtonStyleClass]="'today-button'"
[timeOnly]="true">
</p-calendar>
myComponent.less
.today-button {
display: none !important
}
Но это ничего не делает. Может кто-нибудь, пожалуйста, помогите мне с этим?