Skip to content

Commit

Permalink
Fixes #617
Browse files Browse the repository at this point in the history
Removes AlwayRenderContent from popover and tooltips. Bootstrap never expected the popover or tooltip to still exist after hidden. So a workaround was applied that messed up the fade animation.
Fixed issue with AlwayRenderContent in docs on BSModal and BSOffCanvas default as always been false.
Updates blazorstrapinterop.js transition events are now handled better
Updates Docs
  • Loading branch information
jbomhold3 committed Sep 25, 2024
1 parent 2be1ce8 commit 9e9319c
Show file tree
Hide file tree
Showing 645 changed files with 8,654 additions and 652 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@
height: auto;
transition: width .35s ease;
}
/* _content/BlazorStrap.V4/Components/Common/BSPopover.razor.rz.scp.css */
.popover:not(.show)[b-0jtbl6uhtr] {
visibility: hidden;
}
/* _content/BlazorStrap.V4/Components/Common/BSSpinner.razor.rz.scp.css */
/*Backported from Bootstrap 5*/
.visually-hidden[b-c2v8spxufu] {
Expand All @@ -55,10 +51,6 @@
white-space: nowrap !important;
border: 0 !important;
}
/* _content/BlazorStrap.V4/Components/Common/BSTooltip.razor.rz.scp.css */
.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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,10 @@
height: auto;
transition: width .35s ease;
}
/* _content/BlazorStrap.V5/Components/Common/BSPopover.razor.rz.scp.css */
.popover:not(.show)[b-jitnwoparl] {
visibility: hidden;
}
/* _content/BlazorStrap.V5/Components/Common/BSToast.razor.rz.scp.css */
.toast-icon[b-rmszuegdcu]{
color: rgba(255,255,255, .7);
}
/* _content/BlazorStrap.V5/Components/Common/BSTooltip.razor.rz.scp.css */
.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;
Expand Down
196 changes: 111 additions & 85 deletions docs/VNext/_content/BlazorStrap/blazorstrapinterop.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ export async function checkBackdrops(dotnet) {
var openModals = document.querySelectorAll('.modal.show');
//Checks to see if any other modal is open if so do not remove the backdrop
if (openModals.length == 0) {
backdrop.classList.remove("show");
await waitForTransitionEnd(backdrop);

await waitForTransitionEnd(backdrop, function () {
backdrop.classList.remove("show");
});
await dotnet.invokeMethodAsync('RemoveBackdropAsync');
}
}
Expand All @@ -20,8 +22,9 @@ export async function checkBackdrops(dotnet) {
var openOffcanvas = document.querySelectorAll('.offcanvas.show');
//Checks to see if any other offcanvas is open if so do not remove the backdrop
if (openOffcanvas.length == 0) {
backdrop.classList.remove("show");
await waitForTransitionEnd(backdrop);
await waitForTransitionEnd(backdrop, function () {
backdrop.classList.remove("show");
});
await dotnet.invokeMethodAsync('RemoveOffCanvasBackdropAsync');
}
}
Expand All @@ -45,7 +48,6 @@ export async function addDocumentEvent(eventName, creator, dotnet, ignoreChildre
if (eventName == "" || eventName == "sync" || eventName == "hide" || eventName == "show") return;
docuemntEventId.push({ eventtype: eventName, creator: creator });
}

export async function removeDocumentEvent(eventName, creator) {
docuemntEventId = docuemntEventId.filter(x => x.creator !== creator && x.eventtype !== eventName);
}
Expand Down Expand Up @@ -148,9 +150,12 @@ export async function showModal(modal, dotnet) {
});
await new Promise(resolve => setTimeout(resolve, 75));
}
modal.classList.add("show");

await waitForTransitionEnd(modal, function () {
modal.classList.add("show");
});
modal.focus();
await waitForTransitionEnd(modal);

return {
ClassList: modal.classList.value,
Styles: modal.style.cssText,
Expand All @@ -159,8 +164,9 @@ export async function showModal(modal, dotnet) {

async function hideModalEvents() {
if (modal.getAttribute("data-bs-backdrop") == "static") {
modal.classList.add("modal-static");
await waitForTransitionEnd(modal);
await waitForTransitionEnd(modal, function () {
modal.classList.add("modal-static");
});
modal.classList.remove("modal-static");
}
else {
Expand All @@ -170,12 +176,15 @@ export async function showModal(modal, dotnet) {
}
export async function hideModal(modal, dotnet) {
if (!modal) return null;
modal.classList.remove("show");
modal.setAttribute("aria-modal", "false");
modal.setAttribute("aria-hidden", "true");
document.body.classList.remove("modal-open");

await waitForTransitionEnd(modal);
await waitForTransitionEnd(modal, function () {
modal.classList.remove("show");
modal.setAttribute("aria-modal", "false");
modal.setAttribute("aria-hidden", "true");
document.body.classList.remove("modal-open");

}, 150);

modal.style.display = "none";

var openModals = document.querySelectorAll('.modal.show');
Expand All @@ -188,8 +197,10 @@ export async function hideModal(modal, dotnet) {
var openModals = document.querySelectorAll('.modal.show:not([data-bs-backdrop="false"])');
//Checks to see if any other modal is open if so do not remove the backdrop
if (openModals.length == 0) {
backdrop.classList.remove("show");
await waitForTransitionEnd(backdrop);
await waitForTransitionEnd(backdrop, function () {
backdrop.classList.remove("show");
}, 150);

await dotnet.invokeMethodAsync('RemoveBackdropAsync');
}
}
Expand Down Expand Up @@ -256,9 +267,12 @@ export async function showOffcanvas(offcanvas, dotnet) {
});
await new Promise(resolve => setTimeout(resolve, 75));
}
offcanvas.classList.add("show");

await waitForTransitionEnd(offcanvas, function () {
offcanvas.classList.add("show");
});

offcanvas.focus();
await waitForTransitionEnd(offcanvas);
return {
ClassList: offcanvas.classList.value,
Styles: offcanvas.style.cssText,
Expand All @@ -267,8 +281,9 @@ export async function showOffcanvas(offcanvas, dotnet) {

async function hideOffcanvasEvents() {
if (offcanvas.getAttribute("data-bs-backdrop") == "static") {
offcanvas.classList.add("offcanvas-static");
await waitForTransitionEnd(offcanvas);
await waitForTransitionEnd(offcanvas, function () {
offcanvas.classList.add("offcanvas-static");
});
offcanvas.classList.remove("offcanvas-static");
}
else {
Expand All @@ -278,12 +293,12 @@ export async function showOffcanvas(offcanvas, dotnet) {
}
export async function hideOffcanvas(offcanvas, dotnet) {
if (!offcanvas) return null;
offcanvas.classList.remove("show");
offcanvas.setAttribute("aria-modal", "false");
offcanvas.setAttribute("aria-hidden", "true");
document.body.classList.remove("offcanvas-open");

await waitForTransitionEnd(offcanvas);
await waitForTransitionEnd(offcanvas, function () {
offcanvas.classList.remove("show");
offcanvas.setAttribute("aria-modal", "false");
offcanvas.setAttribute("aria-hidden", "true");
document.body.classList.remove("offcanvas-open");
});
offcanvas.style.visibility = "hidden";

var openOffcanvas = document.querySelectorAll('.offcanvas.show');
Expand All @@ -296,8 +311,9 @@ export async function hideOffcanvas(offcanvas, dotnet) {
var openOffcanvas = document.querySelectorAll('.offcanvas.show:not([data-bs-backdrop="false"])');
//Checks to see if any other offcanvas is open if so do not remove the backdrop
if (openOffcanvas.length == 0) {
backdrop.classList.remove("show");
await waitForTransitionEnd(backdrop);
await waitForTransitionEnd(backdrop, function () {
backdrop.classList.remove("show");
},150);
await dotnet.invokeMethodAsync('RemoveOffCanvasBackdropAsync');
}
}
Expand Down Expand Up @@ -348,8 +364,9 @@ export async function showDropdown(dropdown, isPopper, targetId, placement, dotn
onShowClassRemoved(dropdown, function () {
document.removeEventListener('click', documentClick);
});
dropdown.classList.add("show");
await waitForTransitionEnd(dropdown);
await waitForTransitionEnd(dropdown, function () {
dropdown.classList.add("show");
});

document.addEventListener('click', documentClick);
return {
Expand All @@ -358,11 +375,11 @@ export async function showDropdown(dropdown, isPopper, targetId, placement, dotn
Aria: getAriaAttributes(dropdown),
};
}

export async function hideDropdown(dropdown, dotnet) {
if (!dropdown) return null;
dropdown.classList.remove("show");
await waitForTransitionEnd(dropdown);
await waitForTransitionEnd(dropdown, function () {
dropdown.classList.remove("show");
});
return {
ClassList: dropdown.classList.value,
Styles: dropdown.style.cssText,
Expand Down Expand Up @@ -407,21 +424,21 @@ export async function showTooltip(tooltip, placement, targetId, dotnet, options
}
],
});

tooltip.classList.add("show");
await waitForTransitionEnd(tooltip);
await waitForTransitionEnd(tooltip, function () {
tooltip.classList.add("show");
});
}
return {
ClassList: tooltip.classList.value,
Styles: tooltip.style.cssText,
Aria: getAriaAttributes(tooltip),
};
}

export async function hideTooltip(tooltip, dotnet) {
if (!tooltip) return null;
tooltip.classList.remove("show");
await waitForTransitionEnd(tooltip);
await waitForTransitionEnd(tooltip, function () {
tooltip.classList.remove("show");
}, 150);
return {
ClassList: tooltip.classList.value,
Styles: tooltip.style.cssText,
Expand Down Expand Up @@ -459,17 +476,17 @@ export async function showCollapse(collapse, horizontal, dotnet) {
// collapse.style.display = "block";
await waitForNextFrame();
collapse.classList.remove("collapse");
collapse.classList.add("collapsing");
await waitForTransitionEnd(collapse, function () {
collapse.classList.add("collapsing");

var actualSize = (horizontal ? collapse.scrollWidth : collapse.scrollHeight) + "px";
var actualSize = (horizontal ? collapse.scrollWidth : collapse.scrollHeight) + "px";

if (horizontal) {
collapse.style.width = actualSize;
} else {
collapse.style.height = actualSize;
}

await waitForTransitionEnd(collapse);
if (horizontal) {
collapse.style.width = actualSize;
} else {
collapse.style.height = actualSize;
}
});

collapse.classList.remove("collapsing");
collapse.classList.add("collapse");
Expand Down Expand Up @@ -505,17 +522,18 @@ export async function hideCollapse(collapse, horizontal, dotnet) {

await waitForNextFrame(); // Wait for the next frame to ensure the DOM updates
collapse.classList.remove("collapse");
collapse.classList.add("collapsing");

await waitForNextFrame(); // Wait for the next frame to ensure the DOM updates
await waitForTransitionEnd(collapse, async function () {
collapse.classList.add("collapsing");

if (horizontal) {
collapse.style.width = "";
} else {
collapse.style.height = "";
}
await waitForNextFrame(); // Wait for the next frame to ensure the DOM updates

await waitForTransitionEnd(collapse);
if (horizontal) {
collapse.style.width = "";
} else {
collapse.style.height = "";
}
});

collapse.style.display = "";
collapse.classList.remove("collapsing");
Expand Down Expand Up @@ -599,34 +617,36 @@ export async function animateCarousel(id, showEl, hideEl, back, v4, dotnet) {
if (back) {
showEl.classList.add("carousel-item-prev");
setTimeout(async function () {
if (v4) {
showEl.classList.add("carousel-item-right");
hideEl.classList.add("carousel-item-right");
}
else {
showEl.classList.add("carousel-item-end");
hideEl.classList.add("carousel-item-end");
}
hideEl.addEventListener("transitionend", callback, {
once: true
});
resolve((await waitForTransitionEnd(showEl)));
resolve((await waitForTransitionEnd(showEl, function () {
if (v4) {
showEl.classList.add("carousel-item-right");
hideEl.classList.add("carousel-item-right");
}
else {
showEl.classList.add("carousel-item-end");
hideEl.classList.add("carousel-item-end");
}
hideEl.addEventListener("transitionend", callback, {
once: true
});
})));
}, 10);
} else {
showEl.classList.add("carousel-item-next");
setTimeout(async function () {
if (v4) {
showEl.classList.add("carousel-item-left");
hideEl.classList.add("carousel-item-left");
}
else {
showEl.classList.add("carousel-item-start");
hideEl.classList.add("carousel-item-start");
}
hideEl.addEventListener("transitionend", callback, {
once: true
});
resolve((await waitForTransitionEnd(showEl)));
resolve((await waitForTransitionEnd(showEl, function () {
if (v4) {
showEl.classList.add("carousel-item-left");
hideEl.classList.add("carousel-item-left");
}
else {
showEl.classList.add("carousel-item-start");
hideEl.classList.add("carousel-item-start");
}
hideEl.addEventListener("transitionend", callback, {
once: true
});
})));
}, 10);
}
});
Expand Down Expand Up @@ -705,17 +725,20 @@ export function setBootstrapCss(themeUrl) {
}

// Helper function to wait for transition end or timeout
function waitForTransitionEnd(element) {
function waitForTransitionEnd(element, trigger, extraDelay = 1) {
return new Promise((resolve) => {
const duration = getTransitionDuration(element);
const timeout = 250; // Minimum transition duration of 350ms
const timeout = 450; // Minimum transition duration of 450ms any animations that take longer will be interrupted
const transitionEndHandler = () => {
element.removeEventListener("transitionend", transitionEndHandler);
resolve(true);
clearTimeout(timeoutTimer);
setTimeout(async function () {
element.removeEventListener("transitionend", transitionEndHandler);
resolve(true);
clearTimeout(timeoutTimer);
}, extraDelay);
};

element.addEventListener("transitionend", transitionEndHandler);
trigger();
var timeoutTimer = setTimeout(function () {
resolve(false);
}, timeout);
Expand All @@ -733,6 +756,9 @@ function getTransitionDuration(element) {
function waitForNextFrame() {
return new Promise(resolve => setTimeout(resolve, 5));
}
function setTimeoutAsync(func, time) {
return new Promise(resolve => setTimeout(async function () { await func(); resolve(); }, time));
}
function getAriaAttributes(element) {
const ariaAttributes = Array.from(element.attributes)
.filter(attribute => attribute.name.startsWith('aria'))
Expand Down
Binary file modified docs/VNext/_framework/BlazorStrap.Docs.pdb.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.Docs.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.Docs.wasm.br
Binary file not shown.
Binary file modified 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 modified docs/VNext/_framework/BlazorStrap.Extensions.TreeView.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.Extensions.TreeView.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.Extensions.TreeView.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.Extensions.Wizard.pdb.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.Extensions.Wizard.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.Extensions.Wizard.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.Extensions.Wizard.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.V4.pdb.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.V4.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.V4.wasm.br
Binary file not shown.
Binary file modified 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 modified docs/VNext/_framework/BlazorStrap.V5.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.V5.wasm.br
Binary file not shown.
Binary file modified 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 modified docs/VNext/_framework/BlazorStrap.WASM.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.WASM.wasm.br
Binary file not shown.
Binary file modified 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 modified docs/VNext/_framework/BlazorStrap.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/BlazorStrap.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/Microsoft.CSharp.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/Microsoft.CSharp.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/Microsoft.CSharp.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Collections.Concurrent.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Collections.Concurrent.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Collections.Concurrent.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Collections.Immutable.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Collections.Immutable.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Collections.Immutable.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Collections.NonGeneric.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Collections.NonGeneric.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Collections.NonGeneric.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Collections.Specialized.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Collections.Specialized.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Collections.Specialized.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Collections.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Collections.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Collections.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.ComponentModel.Annotations.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.ComponentModel.Annotations.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.ComponentModel.Annotations.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.ComponentModel.Primitives.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.ComponentModel.Primitives.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.ComponentModel.Primitives.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.ComponentModel.TypeConverter.wasm
Binary file not shown.
Binary file not shown.
Binary file modified docs/VNext/_framework/System.ComponentModel.TypeConverter.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.ComponentModel.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.ComponentModel.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.ComponentModel.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Console.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Console.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Console.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Diagnostics.Debug.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Diagnostics.Debug.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Diagnostics.Debug.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Diagnostics.DiagnosticSource.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Diagnostics.DiagnosticSource.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Diagnostics.DiagnosticSource.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Diagnostics.Tools.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Diagnostics.Tools.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Diagnostics.Tools.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Diagnostics.Tracing.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Diagnostics.Tracing.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Diagnostics.Tracing.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Linq.Expressions.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Linq.Expressions.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Linq.Expressions.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Linq.Queryable.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Linq.Queryable.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Linq.Queryable.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Linq.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Linq.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Linq.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Memory.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Memory.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Memory.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Net.Http.Json.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Net.Http.Json.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Net.Http.Json.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Net.Http.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Net.Http.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Net.Http.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Net.NetworkInformation.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Net.NetworkInformation.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Net.NetworkInformation.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Net.Primitives.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Net.Primitives.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Net.Primitives.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.ObjectModel.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.ObjectModel.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.ObjectModel.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Private.CoreLib.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Private.CoreLib.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Private.CoreLib.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Private.Uri.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Private.Uri.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Private.Uri.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Resources.ResourceManager.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Resources.ResourceManager.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Resources.ResourceManager.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Runtime.Extensions.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Runtime.Extensions.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Runtime.Extensions.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Runtime.Numerics.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Runtime.Numerics.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Runtime.Numerics.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Runtime.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Runtime.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Runtime.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Text.Encodings.Web.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Text.Encodings.Web.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Text.Encodings.Web.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Text.Json.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Text.Json.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Text.Json.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Text.RegularExpressions.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Text.RegularExpressions.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Text.RegularExpressions.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Threading.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Threading.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Threading.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Transactions.Local.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Transactions.Local.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Transactions.Local.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Web.HttpUtility.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Web.HttpUtility.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.Web.HttpUtility.wasm.gz
Binary file not shown.
Binary file modified docs/VNext/_framework/System.wasm
Binary file not shown.
Binary file modified docs/VNext/_framework/System.wasm.br
Binary file not shown.
Binary file modified docs/VNext/_framework/System.wasm.gz
Binary file not shown.
Loading

0 comments on commit 9e9319c

Please sign in to comment.