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

Some minor MatTable fixes. #885

Open
wants to merge 42 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
41c7094
Do not automatically generate table search placeholder, when custom o…
May 18, 2021
d344677
Prevent throwing exception in MatTable when Items colleciton is still…
May 18, 2021
c406111
Make disabled button unclickable
Jul 26, 2021
c772d0a
Fix sort header direction arrows.
Sep 21, 2021
cbc21ed
MatSelect fixed width fix.
Sep 23, 2021
244cc97
Do not publish package on build
adameste Sep 24, 2021
b205245
Convert to .NET 6
adameste Sep 24, 2021
3ace599
Checkbox indeterminate fix.
Oct 11, 2021
1501387
Fix datepicker localtime.
Nov 10, 2021
29ffe93
Fix matbutton uncaught exception.
adameste Nov 18, 2021
48db1fc
Fix toaster close icon.
adameste Nov 18, 2021
8e2908d
Add js invoke void functionality.
adameste Feb 7, 2022
31989d2
Mattable invoke statehaschanged using dispatcher.
adameste Feb 8, 2022
09fb235
Add enum support.
adameste Feb 11, 2022
fd1e55d
Disallow deselecting mattable row.
adameste Mar 1, 2022
ae5683e
Mattables are now typed (for event handling to pass templated param i…
adameste Apr 5, 2022
41624a5
Update for nullable enum support.
adameste May 16, 2022
b5401d9
Allow clearing validation errors.
adameste May 30, 2022
9a2e3d0
Add tooltip optin to maticon (html title version, fast).
adameste Jul 25, 2022
ae68a2d
Resolve project warnings.
adameste Jul 25, 2022
a3db650
Allow input event change for text input elements.
adameste Nov 23, 2022
689d2e1
Fix MatSelect disabled state changing.
adameste Jan 17, 2023
e23de6d
Migrate project files to .net6&7
adameste Jul 4, 2023
e14f77d
Create working branch with net7.0 and net 6.0 support.
adameste Jul 4, 2023
f88f0d4
Merge branch 'net7_working' into develop
adameste Jul 4, 2023
c6cf3d7
Merge branch 'develop_samprof' into develop
adameste Jul 4, 2023
3a0d923
Fix navlink activation on ctrl & shift modifier key navigation
adameste Jul 18, 2023
3b6d111
Update to .NET 8
adameste Jan 16, 2024
fa638fc
Fix js & css webpack build. Button change open function with target s…
adameste Jun 28, 2024
4d9f904
Add button colors.
adameste Jun 28, 2024
70fe543
Add button density.
adameste Jun 28, 2024
58dfa9b
Checkbox colors.
adameste Jun 28, 2024
f0f7a12
Icon button sizes & colors.
adameste Jul 1, 2024
86c812f
Fix dense text field outline
Jul 1, 2024
a6e1187
Add Dense property to MatSelect
Jul 2, 2024
65cf807
Merge branch 'feature/mat-select-dense' into develop
Jul 2, 2024
c30c628
Fix button colors ignoring disabled status
Jul 2, 2024
dc1f8bd
Merge branch 'feature/fix-colors' into develop
Jul 2, 2024
6b59aa6
Fix typo in class name
Jul 3, 2024
47c7597
Update version
adameste Jul 9, 2024
3698014
Merge branch 'develop' of github.com:adameste/MatBlazor into develop
adameste Jul 9, 2024
487d44d
Fix NPM build.
adameste Jul 9, 2024
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 @@ -3,7 +3,7 @@
<PropertyGroup>
<LangVersion>9</LangVersion>
<RazorLangVersion>3.0</RazorLangVersion>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<BlazorWebAssemblyLoadAllGlobalizationData>true</BlazorWebAssemblyLoadAllGlobalizationData>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<LangVersion>9</LangVersion>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
<TargetFrameworks>net5.0;netcoreapp3.1</TargetFrameworks>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading