Skip to content

Commit

Permalink
615 new feature bsdatagrid (#616)
Browse files Browse the repository at this point in the history
Adds new component BSDataGrid
Updates Docs Example, Markup, Code,Css are now split into tabs
Bump version for release
  • Loading branch information
jbomhold3 authored Sep 13, 2024
1 parent d544af1 commit 60bdf92
Show file tree
Hide file tree
Showing 1,399 changed files with 9,601 additions and 1,585 deletions.
2 changes: 1 addition & 1 deletion docs/VNext/BlazorStrap.WASM.styles.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import 'docs/BlazorStrap-Docs.bundle.scp.css';
@import 'docs/BlazorStrap.Docs.bundle.scp.css';
@import '_content/BlazorStrap.V4/BlazorStrap.V4.bundle.scp.css';
@import '_content/BlazorStrap.V5/BlazorStrap.V5.bundle.scp.css';
@import '_content/BlazorStrap/BlazorStrap.bundle.scp.css';
Expand Down
131 changes: 131 additions & 0 deletions docs/VNext/_content/BlazorStrap.V4/BlazorStrap.V4.bundle.scp.css
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,137 @@
.tooltip:not(.show)[b-llcjnn5xox] {
visibility: hidden;
}
/* _content/BlazorStrap.V4/Components/DataGrid/BSDataGridCore.razor.rz.scp.css */
.grid-header-button[b-60rmeqwzrc] {
font-weight: inherit;
background: none;
color: inherit;
border: none;
text-align: inherit;
margin: 0;
padding: 0;
}
[b-60rmeqwzrc] .grid-header-link{
font-weight: inherit;
background: none;
color: inherit;
border: none;
text-align: inherit;
margin: 0 .25rem 0 0;
padding: 0;
}
th button.sort-by[b-60rmeqwzrc] {
padding-right: 18px;
position: relative;
}

button.sort-by[b-60rmeqwzrc]:before,
button.sort-by[b-60rmeqwzrc]:after {
border: 4px solid transparent;
content: "";
display: block;
height: 0;
right: 5px;
top: 50%;
position: absolute;
width: 0;
}

button.sort-by[b-60rmeqwzrc]:before {
border-bottom-color: #666;
margin-top: -9px;
}

button.sort-by[b-60rmeqwzrc]:after {
border-top-color: #666;
margin-top: 1px;
}

th button.sort[b-60rmeqwzrc] {
padding-right: 18px;
position: relative;
}

button.sort[b-60rmeqwzrc]:before,
button.sort[b-60rmeqwzrc]:after {
border: 4px solid transparent;
content: "";
display: block;
height: 0;
right: 5px;
top: 50%;
position: absolute;
width: 0;
}

button.sort[b-60rmeqwzrc]:before {
border-bottom-color: #666;
margin-top: -9px;
}

th button.sort-desc[b-60rmeqwzrc] {
padding-right: 18px;
position: relative;
}

button.sort-desc[b-60rmeqwzrc]:before,
button.sort-desc[b-60rmeqwzrc]:after {
border: 4px solid transparent;
content: "";
display: block;
height: 0;
right: 5px;
top: 50%;
position: absolute;
width: 0;
}

button.sort-desc[b-60rmeqwzrc]:after {
border-top-color: #666;
margin-top: 1px;
}


.system-uicons--filter[b-60rmeqwzrc] {
display: inline-block;
width: 1em;
height: 1em;
--svg: url("data:image/svg+xml,%3Csvg height='21' viewBox='0 0 21 21' width='21' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m.5.5h12l-4 7v3l-3 3v-6z' fill='currentColor' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' transform='translate(4 4)'/%3E%3C/svg%3E");
background-color: currentColor;
-webkit-mask-image: var(--svg);
mask-image: var(--svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: 100% 100%;
mask-size: 100% 100%;
}
.system-uicons--filter-empty[b-60rmeqwzrc] {
display: inline-block;
width: 1em;
height: 1em;
--svg: url("data:image/svg+xml,%3Csvg height='21' viewBox='0 0 21 21' width='21' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m.5.5h12l-4 7v3l-3 3v-6z' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' transform='translate(4 4)'/%3E%3C/svg%3E");
background-color: currentColor;
-webkit-mask-image: var(--svg);
mask-image: var(--svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: 100% 100%;
mask-size: 100% 100%;
}
.system-uicons--menu[b-60rmeqwzrc] {
display: inline-block;
width: 1em;
height: 1em;
--svg: url("data:image/svg+xml,%3Csvg height='21' viewBox='0 0 21 21' width='21' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4.5 6.5h12'/%3E%3Cpath d='m4.498 10.5h11.997'/%3E%3Cpath d='m4.5 14.5h11.995'/%3E%3C/g%3E%3C/svg%3E");
background-color: currentColor;
-webkit-mask-image: var(--svg);
mask-image: var(--svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: 100% 100%;
mask-size: 100% 100%;
}

/* _content/BlazorStrap.V4/Components/Datatable/BSDataTableHead.razor.rz.scp.css */
/*Credit https://codepen.io/imarkrige/pen/kyOjoL */
th a[b-rit8y8ad7h],
Expand Down
131 changes: 131 additions & 0 deletions docs/VNext/_content/BlazorStrap.V5/BlazorStrap.V5.bundle.scp.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,137 @@
.tooltip:not(.show)[b-t15xljjw7v] {
visibility: hidden;
}
/* _content/BlazorStrap.V5/Components/DataGrid/BSDataGridCore.razor.rz.scp.css */
.grid-header-button[b-9i00a6f8qh] {
font-weight: inherit;
background: none;
color: inherit;
border: none;
text-align: inherit;
margin: 0;
padding: 0;
}
[b-9i00a6f8qh] .grid-header-link{
font-weight: inherit;
background: none;
color: inherit;
border: none;
text-align: inherit;
margin: 0 .25rem 0 0;
padding: 0;
}
th button.sort-by[b-9i00a6f8qh] {
padding-right: 18px;
position: relative;
}

button.sort-by[b-9i00a6f8qh]:before,
button.sort-by[b-9i00a6f8qh]:after {
border: 4px solid transparent;
content: "";
display: block;
height: 0;
right: 5px;
top: 50%;
position: absolute;
width: 0;
}

button.sort-by[b-9i00a6f8qh]:before {
border-bottom-color: #666;
margin-top: -9px;
}

button.sort-by[b-9i00a6f8qh]:after {
border-top-color: #666;
margin-top: 1px;
}

th button.sort[b-9i00a6f8qh] {
padding-right: 18px;
position: relative;
}

button.sort[b-9i00a6f8qh]:before,
button.sort[b-9i00a6f8qh]:after {
border: 4px solid transparent;
content: "";
display: block;
height: 0;
right: 5px;
top: 50%;
position: absolute;
width: 0;
}

button.sort[b-9i00a6f8qh]:before {
border-bottom-color: #666;
margin-top: -9px;
}

th button.sort-desc[b-9i00a6f8qh] {
padding-right: 18px;
position: relative;
}

button.sort-desc[b-9i00a6f8qh]:before,
button.sort-desc[b-9i00a6f8qh]:after {
border: 4px solid transparent;
content: "";
display: block;
height: 0;
right: 5px;
top: 50%;
position: absolute;
width: 0;
}

button.sort-desc[b-9i00a6f8qh]:after {
border-top-color: #666;
margin-top: 1px;
}


.system-uicons--filter[b-9i00a6f8qh] {
display: inline-block;
width: 1em;
height: 1em;
--svg: url("data:image/svg+xml,%3Csvg height='21' viewBox='0 0 21 21' width='21' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m.5.5h12l-4 7v3l-3 3v-6z' fill='currentColor' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' transform='translate(4 4)'/%3E%3C/svg%3E");
background-color: currentColor;
-webkit-mask-image: var(--svg);
mask-image: var(--svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: 100% 100%;
mask-size: 100% 100%;
}
.system-uicons--filter-empty[b-9i00a6f8qh] {
display: inline-block;
width: 1em;
height: 1em;
--svg: url("data:image/svg+xml,%3Csvg height='21' viewBox='0 0 21 21' width='21' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m.5.5h12l-4 7v3l-3 3v-6z' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' transform='translate(4 4)'/%3E%3C/svg%3E");
background-color: currentColor;
-webkit-mask-image: var(--svg);
mask-image: var(--svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: 100% 100%;
mask-size: 100% 100%;
}
.system-uicons--menu[b-9i00a6f8qh] {
display: inline-block;
width: 1em;
height: 1em;
--svg: url("data:image/svg+xml,%3Csvg height='21' viewBox='0 0 21 21' width='21' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4.5 6.5h12'/%3E%3Cpath d='m4.498 10.5h11.997'/%3E%3Cpath d='m4.5 14.5h11.995'/%3E%3C/g%3E%3C/svg%3E");
background-color: currentColor;
-webkit-mask-image: var(--svg);
mask-image: var(--svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: 100% 100%;
mask-size: 100% 100%;
}

/* _content/BlazorStrap.V5/Components/Datatable/BSDataTableHead.razor.rz.scp.css */
/*Credit https://codepen.io/imarkrige/pen/kyOjoL */
th a[b-cue1wbex1l],
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/VNext/_framework/BlazorStrap.Docs.pdb.gz
Binary file not shown.
Binary file added docs/VNext/_framework/BlazorStrap.Docs.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/BlazorStrap.Docs.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/BlazorStrap.Docs.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.Extensions.TreeView.pdb.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.Extensions.Wizard.pdb.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.V4.pdb.gz
Binary file not shown.
Binary file added docs/VNext/_framework/BlazorStrap.V4.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/BlazorStrap.V4.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/BlazorStrap.V4.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.V5.pdb.gz
Binary file not shown.
Binary file added docs/VNext/_framework/BlazorStrap.V5.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/BlazorStrap.V5.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/BlazorStrap.V5.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.WASM.pdb.gz
Binary file not shown.
Binary file added docs/VNext/_framework/BlazorStrap.WASM.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/BlazorStrap.WASM.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/BlazorStrap.WASM.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.pdb.gz
Binary file not shown.
Binary file added docs/VNext/_framework/BlazorStrap.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/BlazorStrap.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/BlazorStrap.wasm.gz
Binary file not shown.
Binary file added docs/VNext/_framework/ColorCode.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/ColorCode.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/ColorCode.wasm.gz
Binary file not shown.
Binary file added docs/VNext/_framework/FluentValidation.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/FluentValidation.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/FluentValidation.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/VNext/_framework/Markdig.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/Markdig.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/Markdig.wasm.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.
Binary file not shown.
Binary file added docs/VNext/_framework/Microsoft.CSharp.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/Microsoft.CSharp.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/Microsoft.CSharp.wasm.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.
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.
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.
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 added docs/VNext/_framework/Microsoft.JSInterop.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/Microsoft.JSInterop.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/Microsoft.JSInterop.wasm.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.
Binary file not shown.
Binary file added docs/VNext/_framework/System.Collections.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/System.Collections.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/System.Collections.wasm.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 added docs/VNext/_framework/System.ComponentModel.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/VNext/_framework/System.Console.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/System.Console.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/System.Console.wasm.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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/VNext/_framework/System.Linq.Queryable.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/VNext/_framework/System.Linq.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/System.Linq.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/System.Linq.wasm.gz
Binary file not shown.
Binary file added docs/VNext/_framework/System.Memory.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/System.Memory.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/System.Memory.wasm.gz
Binary file not shown.
Binary file added docs/VNext/_framework/System.Net.Http.Json.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/VNext/_framework/System.Net.Http.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/System.Net.Http.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/System.Net.Http.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/VNext/_framework/System.Net.Primitives.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/VNext/_framework/System.ObjectModel.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/System.ObjectModel.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/System.ObjectModel.wasm.gz
Binary file not shown.
Binary file added docs/VNext/_framework/System.Private.CoreLib.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/VNext/_framework/System.Private.Uri.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/System.Private.Uri.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/System.Private.Uri.wasm.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.
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 added docs/VNext/_framework/System.Runtime.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/System.Runtime.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/System.Runtime.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/VNext/_framework/System.Text.Json.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/System.Text.Json.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/System.Text.Json.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/VNext/_framework/System.Threading.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/System.Threading.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/System.Threading.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/VNext/_framework/System.Web.HttpUtility.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/VNext/_framework/System.wasm
Binary file not shown.
Binary file added docs/VNext/_framework/System.wasm.br
Binary file not shown.
Binary file added docs/VNext/_framework/System.wasm.gz
Binary file not shown.
Loading

0 comments on commit 60bdf92

Please sign in to comment.