-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved Support for BlazorServer Side Adds Callbacks for all necessary Interop EventListen in javascript is now able to clean up dereferenced event listeners. Validation now correctly marks Fields on submit.
- Loading branch information
Showing
72 changed files
with
1,037 additions
and
448 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
docs/V5/_framework/BlazorStrap.Extensions.FluentValidation.dll
Binary file not shown.
Binary file modified
BIN
+43 Bytes
(100%)
docs/V5/_framework/BlazorStrap.Extensions.FluentValidation.dll.br
Binary file not shown.
Binary file modified
BIN
-1 Byte
(100%)
docs/V5/_framework/BlazorStrap.Extensions.FluentValidation.dll.gz
Binary file not shown.
Binary file modified
BIN
-1 Byte
(100%)
docs/V5/_framework/BlazorStrap.Extensions.FluentValidation.pdb.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<BSTable IsResponsive="true" IsStriped="true"> | ||
<BSTHead> | ||
<BSTR> | ||
<BSTD>#</BSTD> | ||
<BSTD>First</BSTD> | ||
<BSTD>Last</BSTD> | ||
<BSTD>Handle</BSTD> | ||
</BSTR> | ||
</BSTHead> | ||
<BSTBody> | ||
<BSTR> | ||
<BSTD>1</BSTD> | ||
<BSTD>John</BSTD> | ||
<BSTD>Doe</BSTD> | ||
<BSTD>JohnDoe <br/>media.com</BSTD> | ||
</BSTR> | ||
<BSTR> | ||
<BSTD>2</BSTD> | ||
<BSTD>Jane</BSTD> | ||
<BSTD>Doe</BSTD> | ||
<BSTD>JaneDoe <br/>media.com</BSTD> | ||
</BSTR> | ||
</BSTBody> | ||
<BSTFoot> | ||
<BSTR> | ||
<BSTD ColSpan="4">Spanned Table Footer Here</BSTD> | ||
</BSTR> | ||
|
||
</BSTFoot> | ||
</BSTable> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
docs/V5/docs/Samples/Forms/Validation/ValidationMain.razor.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
::deep .custom-file-button input[type=file] { | ||
margin-left: -2px !important; | ||
} | ||
|
||
::deep .custom-file-button input[type=file]::-webkit-file-upload-button { | ||
display: none; | ||
} | ||
|
||
::deep.custom-file-button input[type=file]::file-selector-button { | ||
display: none; | ||
} | ||
|
||
::deep .custom-file-button:hover label { | ||
background-color: #dde0e3; | ||
cursor: pointer; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.