Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename Divider properties to HourMinuteSeparator in BitCalenderClassStyles (#7996) #7997

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@
<i style="@Styles?.TimePickerDecreaseHourIcon" class="bit-icon bit-icon--ChevronDownSmall @Classes?.TimePickerDecreaseHourIcon" aria-hidden="true" />
</button>
</div>
<div style="@Styles?.TimePickerDivider" class="bit-cal-tpr bit-cal-tdv @Classes?.TimePickerDivider">:</div>
<div style="@Styles?.TimePickerHourMinuteSeparator" class="bit-cal-tpr bit-cal-tdv @Classes?.TimePickerHourMinuteSeparator">:</div>
<div style="@Styles?.MinuteInputContainer" class="bit-cal-tpr @Classes?.MinuteInputContainer">
<button @onpointerup="HandleOnPointerUpOrOut"
@onpointerout="HandleOnPointerUpOrOut"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ public class BitCalendarClassStyles
public string? TimePickerHourInput { get; set; }

/// <summary>
/// Custom CSS classes/styles for the time-picker's divider of the BitCalendar.
/// Custom CSS classes/styles for the time-picker's hour/minute separator of the BitCalendar.
/// </summary>
public string? TimePickerDivider { get; set; }
public string? TimePickerHourMinuteSeparator { get; set; }

/// <summary>
/// Custom CSS classes/styles for the time-picker's minute input of the BitCalendar.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -493,10 +493,10 @@ public partial class BitCalendarDemo
},
new()
{
Name = "TimePickerDivider",
Name = "TimePickerHourMinuteSeparator",
Type = "string?",
DefaultValue = "null",
Description = "Custom CSS classes/styles for the time-picker's divider of the BitCalendar."
Description = "Custom CSS classes/styles for the time-picker's hour/minute separator of the BitCalendar."
},
new()
{
Expand Down
Loading