Skip to content

Commit

Permalink
Bugfix in InputDateTime
Browse files Browse the repository at this point in the history
  • Loading branch information
thirstyape committed Feb 3, 2025
1 parent 604c101 commit 6daefbd
Show file tree
Hide file tree
Showing 8 changed files with 106 additions and 9 deletions.
2 changes: 1 addition & 1 deletion easy-blazor-bulma/Bulma/Form/InputDateTime.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ private void ResetStatus()

private IEnumerable<DateTime> GetCalendarDates()
{
var first = new DateTime(PopoutValue.Year, PopoutValue.Month, 1).AddDays(-1);
var first = PopoutValue > DateTime.MinValue ? new DateTime(PopoutValue.Year, PopoutValue.Month, 1).AddDays(-1) : DateTime.MinValue;

if (first.DayOfWeek != StartOfWeek)
first = first.GetPreviousWeekday(StartOfWeek);
Expand Down
4 changes: 4 additions & 0 deletions easy-blazor-bulma/Sass/easy-blazor-bulma.sass
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@
background-color: $color
color: $color-invert

@for $i from 1 through 10
.z-#{$i * 10}
z-index: $i * 10 !important

///////////////////
// Blazor Loader //
///////////////////
Expand Down
9 changes: 6 additions & 3 deletions easy-blazor-bulma/easy-blazor-bulma.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
<Authors>NF Software Inc.</Authors>
<Company>NF Software Inc.</Company>
<Copyright>Copyright 2023 $(Company)</Copyright>
<Version>1.1.14</Version>
<AssemblyVersion>1.1.14.0</AssemblyVersion>
<FileVersion>1.1.14.0</FileVersion>
<Version>1.1.15</Version>
<AssemblyVersion>1.1.15.0</AssemblyVersion>
<FileVersion>1.1.15.0</FileVersion>
<PackageId>Easy.Blazor.Bulma</PackageId>
<PackageTags>blazor bulma components inputs layout forms icons</PackageTags>
<RepositoryUrl>https://github.com/thirstyape/Easy-Blazor-Bulma</RepositoryUrl>
Expand All @@ -20,6 +20,9 @@
This project was created to provide a standard implementation of Bulma with Blazor components.
</Description>
<PackageReleaseNotes>
1.1.15
Bugfix in InputDateTime and Improvements to printing

1.1.14
Update icon font, fix Orange failing in BulmaColorHelper.GetHexColor, add border CSS classes

Expand Down
47 changes: 46 additions & 1 deletion easy-blazor-bulma/wwwroot/css/easy-blazor-bulma-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -12060,6 +12060,11 @@ a.has-text-highlight-dark:hover, a.has-text-highlight-dark:focus {
visibility: hidden !important;
}
}
@media screen {
.is-hidden-screen {
display: none !important;
}
}
@media print {
.is-size-1 {
font-size: 33pt !important;
Expand Down Expand Up @@ -12087,7 +12092,7 @@ a.has-text-highlight-dark:hover, a.has-text-highlight-dark:focus {
}
.is-displayed-print,
.is-displayed-print * {
visibility: visible;
visibility: visible !important;
}
.is-displayed-print-absolute {
position: absolute;
Expand Down Expand Up @@ -23837,6 +23842,46 @@ span[data-tooltip].has-tooltip-highlight {
color: #fff;
}

.z-10 {
z-index: 10 !important;
}

.z-20 {
z-index: 20 !important;
}

.z-30 {
z-index: 30 !important;
}

.z-40 {
z-index: 40 !important;
}

.z-50 {
z-index: 50 !important;
}

.z-60 {
z-index: 60 !important;
}

.z-70 {
z-index: 70 !important;
}

.z-80 {
z-index: 80 !important;
}

.z-90 {
z-index: 90 !important;
}

.z-100 {
z-index: 100 !important;
}

.loading-progress {
position: relative;
display: block;
Expand Down

Large diffs are not rendered by default.

47 changes: 46 additions & 1 deletion easy-blazor-bulma/wwwroot/css/easy-blazor-bulma.css
Original file line number Diff line number Diff line change
Expand Up @@ -12060,6 +12060,11 @@ a.has-text-highlight-dark:hover, a.has-text-highlight-dark:focus {
visibility: hidden !important;
}
}
@media screen {
.is-hidden-screen {
display: none !important;
}
}
@media print {
.is-size-1 {
font-size: 33pt !important;
Expand Down Expand Up @@ -12087,7 +12092,7 @@ a.has-text-highlight-dark:hover, a.has-text-highlight-dark:focus {
}
.is-displayed-print,
.is-displayed-print * {
visibility: visible;
visibility: visible !important;
}
.is-displayed-print-absolute {
position: absolute;
Expand Down Expand Up @@ -23837,6 +23842,46 @@ span[data-tooltip].has-tooltip-highlight {
color: #fff;
}

.z-10 {
z-index: 10 !important;
}

.z-20 {
z-index: 20 !important;
}

.z-30 {
z-index: 30 !important;
}

.z-40 {
z-index: 40 !important;
}

.z-50 {
z-index: 50 !important;
}

.z-60 {
z-index: 60 !important;
}

.z-70 {
z-index: 70 !important;
}

.z-80 {
z-index: 80 !important;
}

.z-90 {
z-index: 90 !important;
}

.z-100 {
z-index: 100 !important;
}

.loading-progress {
position: relative;
display: block;
Expand Down
2 changes: 1 addition & 1 deletion easy-blazor-bulma/wwwroot/css/easy-blazor-bulma.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion external/bulma
Submodule bulma updated from c6ab35 to c2fade

0 comments on commit 6daefbd

Please sign in to comment.