Skip to content

Commit

Permalink
Update examples to v5.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sean-mcl committed Oct 1, 2024
1 parent bb915d0 commit 3f14132
Show file tree
Hide file tree
Showing 179 changed files with 170 additions and 156 deletions.
8 changes: 0 additions & 8 deletions _content/Plotly.Blazor/plotly-2.33.0.min.js

This file was deleted.

8 changes: 8 additions & 0 deletions _content/Plotly.Blazor/plotly-2.35.2.min.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -31,28 +31,32 @@ export async function importScript(id, scriptUrl) {
});
}

function onPlotlyReady(callback) {
if (plotlyReady) {
function onPlotlyReady(divId, callback) {
//check the plot has not been derendered before attempting to do anything
if (document.getElementById(divId) == null) {
return;
}
else if (plotlyReady) {
callback();
} else {
plotlyReadyCallbacks.push(callback);
}
}

export function newPlot(id, data = [], layout = {}, config = {}, frames = []) {
onPlotlyReady(() => {
onPlotlyReady(id, () => {
window.Plotly.newPlot(id, data, layout, config, frames);
});
}

export function react(id, data = [], layout = {}, config = {}, frames = []) {
onPlotlyReady(() => {
onPlotlyReady(id, () => {
window.Plotly.react(id, data, layout, config, frames);
});
}

export function extendTraces(id, x, y, indices, max) {
onPlotlyReady(() => {
onPlotlyReady(id, () => {
var data = {};
if (x != null) {
data["x"] = x;
Expand All @@ -69,7 +73,7 @@ export function extendTraces(id, x, y, indices, max) {
}

export function extendTraces3D(id, x, y, z, indices, max) {
onPlotlyReady(() => {
onPlotlyReady(id, () => {
var data = {};
if (x != null) {
data["x"] = x;
Expand All @@ -90,7 +94,7 @@ export function extendTraces3D(id, x, y, z, indices, max) {
}

export function prependTraces(id, x = null, y = null, indices = [0], max) {
onPlotlyReady(() => {
onPlotlyReady(id, () => {
var data = {};
if (x != null) {
data["x"] = x;
Expand All @@ -108,7 +112,7 @@ export function prependTraces(id, x = null, y = null, indices = [0], max) {
}

export function prependTraces3D(id, x = null, y = null, z = null, indices = [0], max) {
onPlotlyReady(() => {
onPlotlyReady(id, () => {
var data = {};
if (x != null) {
data["x"] = x;
Expand All @@ -130,7 +134,7 @@ export function prependTraces3D(id, x = null, y = null, z = null, indices = [0],
}

export function addTrace(id, data = {}, index = null) {
onPlotlyReady(() => {
onPlotlyReady(id, () => {
if (index != null) {
window.Plotly.addTraces(id, [data], [index]);
} else {
Expand All @@ -140,47 +144,47 @@ export function addTrace(id, data = {}, index = null) {
}

export function deleteTrace(id, index) {
onPlotlyReady(() => {
onPlotlyReady(id, () => {
window.Plotly.deleteTraces(id, index);
});
}

export function purge(id) {
onPlotlyReady(() => {
onPlotlyReady(id, () => {
window.Plotly.purge(id);
});
}

export function relayout(id, layout = {}) {
onPlotlyReady(() => {
onPlotlyReady(id, () => {
window.Plotly.relayout(id, layout);
});
}

export function restyle(id, data, indices) {
onPlotlyReady(() => {
onPlotlyReady(id, () => {
window.Plotly.restyle(id, data, indices);
});
}

export function toImage(id, format, height, width) {
return new Promise((resolve) => {
onPlotlyReady(() => {
onPlotlyReady(id, () => {
resolve(window.Plotly.toImage(id, { format: format, height: height, width: width }));
});
});
}

export function downloadImage(id, format, height, width, filename) {
return new Promise((resolve) => {
onPlotlyReady(() => {
onPlotlyReady(id, () => {
resolve(window.Plotly.downloadImage(id, { format: format, height: height, width: width, filename: filename }));
});
});
}

export function subscribeLegendClickEvent(dotNetObj, id) {
onPlotlyReady(() => {
onPlotlyReady(id, () => {
var plot = document.getElementById(id);
plot.on('plotly_legendclick', function (data) {
dotNetObj.invokeMethodAsync('LegendClickEvent', {
Expand All @@ -192,7 +196,7 @@ export function subscribeLegendClickEvent(dotNetObj, id) {
}

export function subscribeSelectedEvent(dotNetObj, id) {
onPlotlyReady(() => {
onPlotlyReady(id, () => {
var plot = document.getElementById(id);
plot.on('plotly_selected', function (data) {
dotNetObj.invokeMethodAsync('SelectedEvent',
Expand All @@ -215,7 +219,7 @@ export function subscribeSelectedEvent(dotNetObj, id) {
}

export function subscribeClickEvent(dotNetObj, id) {
onPlotlyReady(() => {
onPlotlyReady(id, () => {
var plot = document.getElementById(id);
plot.on('plotly_click', function (data) {
dotNetObj.invokeMethodAsync('ClickEvent',
Expand All @@ -238,7 +242,7 @@ export function subscribeClickEvent(dotNetObj, id) {
}

export function subscribeHoverEvent(dotNetObj, id) {
onPlotlyReady(() => {
onPlotlyReady(id, () => {
var plot = document.getElementById(id);
plot.on('plotly_hover', function (data) {
dotNetObj.invokeMethodAsync('HoverEvent',
Expand All @@ -261,29 +265,39 @@ export function subscribeHoverEvent(dotNetObj, id) {
}

export function subscribeRelayoutEvent(dotNetObj, id) {
onPlotlyReady(() => {
onPlotlyReady(id, () => {
var plot = document.getElementById(id);

plot.on('plotly_relayout', function (eventdata) {
var x = eventdata["xaxis.range"];
var x1 = eventdata["xaxis.range[0]"];
var x2 = eventdata["xaxis.range[1]"];

var y = eventdata["yaxis.range"];
var y1 = eventdata["yaxis.range[0]"];
var y2 = eventdata["yaxis.range[1]"];

var z = eventdata["zaxis.range"];
var z1 = eventdata["zaxis.range[0]"];
var z2 = eventdata["zaxis.range[1]"];

var result = {};

if (x1 && x2) {
if (x) {
result.XRange = x;
} else if (x1 && x2) {
result.XRange = [x1, x2];
}

if (y1 && y2) {
if (y) {
result.YRange = y;
} else if (y1 && y2) {
result.YRange = [y1, y2];
}

if (z1 && z2) {
if (z) {
result.ZRange = z;
} else if (z1 && z2) {
result.ZRange = [z1, z2];
}

Expand All @@ -295,7 +309,7 @@ export function subscribeRelayoutEvent(dotNetObj, id) {
}

export function subscribeRestyleEvent(dotNetObj, id) {
onPlotlyReady(() => {
onPlotlyReady(id, () => {
var plot = document.getElementById(id);
plot.on('plotly_restyle', function (eventdata) {
var result = {};
Expand Down
Binary file modified _framework/Microsoft.AspNetCore.Components.Web.wasm
Binary file not shown.
Binary file modified _framework/Microsoft.AspNetCore.Components.Web.wasm.br
Binary file not shown.
Binary file modified _framework/Microsoft.AspNetCore.Components.Web.wasm.gz
Binary file not shown.
Binary file modified _framework/Microsoft.AspNetCore.Components.WebAssembly.wasm
Binary file not shown.
Binary file modified _framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.br
Binary file not shown.
Binary file modified _framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz
Binary file not shown.
Binary file modified _framework/Microsoft.AspNetCore.Components.wasm
Binary file not shown.
Binary file modified _framework/Microsoft.AspNetCore.Components.wasm.br
Binary file not shown.
Binary file modified _framework/Microsoft.AspNetCore.Components.wasm.gz
Binary file not shown.
Binary file modified _framework/Microsoft.CSharp.wasm
Binary file not shown.
Binary file modified _framework/Microsoft.CSharp.wasm.br
Binary file not shown.
Binary file modified _framework/Microsoft.CSharp.wasm.gz
Binary file not shown.
Binary file modified _framework/Microsoft.JSInterop.WebAssembly.wasm
Binary file not shown.
Binary file modified _framework/Microsoft.JSInterop.WebAssembly.wasm.br
Binary file not shown.
Binary file modified _framework/Microsoft.JSInterop.WebAssembly.wasm.gz
Binary file not shown.
Binary file modified _framework/Microsoft.JSInterop.wasm
Binary file not shown.
Binary file modified _framework/Microsoft.JSInterop.wasm.br
Binary file not shown.
Binary file modified _framework/Microsoft.JSInterop.wasm.gz
Binary file not shown.
Binary file modified _framework/Plotly.Blazor.Examples.pdb.gz
Binary file not shown.
Binary file modified _framework/Plotly.Blazor.Examples.wasm
Binary file not shown.
Binary file modified _framework/Plotly.Blazor.Examples.wasm.br
Binary file not shown.
Binary file modified _framework/Plotly.Blazor.Examples.wasm.gz
Binary file not shown.
Binary file modified _framework/Plotly.Blazor.pdb.gz
Binary file not shown.
Binary file modified _framework/Plotly.Blazor.wasm
Binary file not shown.
Binary file modified _framework/Plotly.Blazor.wasm.br
Binary file not shown.
Binary file modified _framework/Plotly.Blazor.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Collections.Concurrent.wasm
Binary file not shown.
Binary file modified _framework/System.Collections.Concurrent.wasm.br
Binary file not shown.
Binary file modified _framework/System.Collections.Concurrent.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Collections.Immutable.wasm
Binary file not shown.
Binary file modified _framework/System.Collections.Immutable.wasm.br
Binary file not shown.
Binary file modified _framework/System.Collections.Immutable.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Collections.NonGeneric.wasm
Binary file not shown.
Binary file modified _framework/System.Collections.NonGeneric.wasm.br
Binary file not shown.
Binary file modified _framework/System.Collections.NonGeneric.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Collections.Specialized.wasm
Binary file not shown.
Binary file modified _framework/System.Collections.Specialized.wasm.br
Binary file not shown.
Binary file modified _framework/System.Collections.Specialized.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Collections.wasm
Binary file not shown.
Binary file modified _framework/System.Collections.wasm.br
Binary file not shown.
Binary file modified _framework/System.Collections.wasm.gz
Binary file not shown.
Binary file modified _framework/System.ComponentModel.Primitives.wasm
Binary file not shown.
Binary file modified _framework/System.ComponentModel.Primitives.wasm.br
Binary file not shown.
Binary file modified _framework/System.ComponentModel.Primitives.wasm.gz
Binary file not shown.
Binary file modified _framework/System.ComponentModel.TypeConverter.wasm
Binary file not shown.
Binary file modified _framework/System.ComponentModel.TypeConverter.wasm.br
Binary file not shown.
Binary file modified _framework/System.ComponentModel.TypeConverter.wasm.gz
Binary file not shown.
Binary file modified _framework/System.ComponentModel.wasm
Binary file not shown.
Binary file modified _framework/System.ComponentModel.wasm.br
Binary file not shown.
Binary file modified _framework/System.ComponentModel.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Console.wasm
Binary file not shown.
Binary file modified _framework/System.Console.wasm.br
Binary file not shown.
Binary file modified _framework/System.Console.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Data.Common.wasm
Binary file not shown.
Binary file modified _framework/System.Data.Common.wasm.br
Binary file not shown.
Binary file modified _framework/System.Data.Common.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Diagnostics.DiagnosticSource.wasm
Binary file not shown.
Binary file modified _framework/System.Diagnostics.DiagnosticSource.wasm.br
Binary file not shown.
Binary file modified _framework/System.Diagnostics.DiagnosticSource.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Diagnostics.TraceSource.wasm
Binary file not shown.
Binary file modified _framework/System.Diagnostics.TraceSource.wasm.br
Binary file not shown.
Binary file modified _framework/System.Diagnostics.TraceSource.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Drawing.Primitives.wasm
Binary file not shown.
Binary file modified _framework/System.Drawing.Primitives.wasm.br
Binary file not shown.
Binary file modified _framework/System.Drawing.Primitives.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Drawing.wasm
Binary file not shown.
Binary file modified _framework/System.Drawing.wasm.br
Binary file not shown.
Binary file modified _framework/System.Drawing.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Linq.Expressions.wasm
Binary file not shown.
Binary file modified _framework/System.Linq.Expressions.wasm.br
Binary file not shown.
Binary file modified _framework/System.Linq.Expressions.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Linq.wasm
Binary file not shown.
Binary file modified _framework/System.Linq.wasm.br
Binary file not shown.
Binary file modified _framework/System.Linq.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Memory.wasm
Binary file not shown.
Binary file modified _framework/System.Memory.wasm.br
Binary file not shown.
Binary file modified _framework/System.Memory.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Net.Http.wasm
Binary file not shown.
Binary file modified _framework/System.Net.Http.wasm.br
Binary file not shown.
Binary file modified _framework/System.Net.Http.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Net.Primitives.wasm
Binary file not shown.
Binary file modified _framework/System.Net.Primitives.wasm.br
Binary file not shown.
Binary file modified _framework/System.Net.Primitives.wasm.gz
Binary file not shown.
Binary file modified _framework/System.ObjectModel.wasm
Binary file not shown.
Binary file modified _framework/System.ObjectModel.wasm.br
Binary file not shown.
Binary file modified _framework/System.ObjectModel.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Private.CoreLib.wasm
Binary file not shown.
Binary file modified _framework/System.Private.CoreLib.wasm.br
Binary file not shown.
Binary file modified _framework/System.Private.CoreLib.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Private.Uri.wasm
Binary file not shown.
Binary file modified _framework/System.Private.Uri.wasm.br
Binary file not shown.
Binary file modified _framework/System.Private.Uri.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Private.Xml.Linq.wasm
Binary file not shown.
Binary file modified _framework/System.Private.Xml.Linq.wasm.br
Binary file not shown.
Binary file modified _framework/System.Private.Xml.Linq.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Private.Xml.wasm
Binary file not shown.
Binary file modified _framework/System.Private.Xml.wasm.br
Binary file not shown.
Binary file modified _framework/System.Private.Xml.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Reflection.Emit.ILGeneration.wasm
Binary file not shown.
Binary file modified _framework/System.Reflection.Emit.ILGeneration.wasm.br
Binary file not shown.
Binary file modified _framework/System.Reflection.Emit.ILGeneration.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Reflection.Emit.Lightweight.wasm
Binary file not shown.
Binary file modified _framework/System.Reflection.Emit.Lightweight.wasm.br
Binary file not shown.
Binary file modified _framework/System.Reflection.Emit.Lightweight.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Reflection.Primitives.wasm
Binary file not shown.
Binary file modified _framework/System.Reflection.Primitives.wasm.br
Binary file not shown.
Binary file modified _framework/System.Reflection.Primitives.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Runtime.InteropServices.JavaScript.wasm
Binary file not shown.
Binary file modified _framework/System.Runtime.InteropServices.JavaScript.wasm.br
Binary file not shown.
Binary file modified _framework/System.Runtime.InteropServices.JavaScript.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Runtime.InteropServices.wasm
Binary file not shown.
Binary file modified _framework/System.Runtime.InteropServices.wasm.br
Binary file not shown.
Binary file modified _framework/System.Runtime.InteropServices.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Runtime.Numerics.wasm
Binary file not shown.
Binary file modified _framework/System.Runtime.Numerics.wasm.br
Binary file not shown.
Binary file modified _framework/System.Runtime.Numerics.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Runtime.Serialization.Formatters.wasm
Binary file not shown.
Binary file modified _framework/System.Runtime.Serialization.Formatters.wasm.br
Binary file not shown.
Binary file modified _framework/System.Runtime.Serialization.Formatters.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Runtime.Serialization.Primitives.wasm
Binary file not shown.
Binary file modified _framework/System.Runtime.Serialization.Primitives.wasm.br
Binary file not shown.
Binary file modified _framework/System.Runtime.Serialization.Primitives.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Runtime.wasm
Binary file not shown.
Binary file modified _framework/System.Runtime.wasm.br
Binary file not shown.
Binary file modified _framework/System.Runtime.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Security.Cryptography.wasm
Binary file not shown.
Binary file modified _framework/System.Security.Cryptography.wasm.br
Binary file not shown.
Binary file modified _framework/System.Security.Cryptography.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Text.Encoding.Extensions.wasm
Binary file not shown.
Binary file modified _framework/System.Text.Encoding.Extensions.wasm.br
Binary file not shown.
Binary file modified _framework/System.Text.Encoding.Extensions.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Text.Encodings.Web.wasm
Binary file not shown.
Binary file modified _framework/System.Text.Encodings.Web.wasm.br
Binary file not shown.
Binary file modified _framework/System.Text.Encodings.Web.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Text.Json.wasm
Binary file not shown.
Binary file modified _framework/System.Text.Json.wasm.br
Binary file not shown.
Binary file modified _framework/System.Text.Json.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Text.RegularExpressions.wasm
Binary file not shown.
Binary file modified _framework/System.Text.RegularExpressions.wasm.br
Binary file not shown.
Binary file modified _framework/System.Text.RegularExpressions.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Threading.wasm
Binary file not shown.
Binary file modified _framework/System.Threading.wasm.br
Binary file not shown.
Binary file modified _framework/System.Threading.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Xml.Linq.wasm
Binary file not shown.
Binary file modified _framework/System.Xml.Linq.wasm.br
Binary file not shown.
Binary file modified _framework/System.Xml.Linq.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Xml.ReaderWriter.wasm
Binary file not shown.
Binary file modified _framework/System.Xml.ReaderWriter.wasm.br
Binary file not shown.
Binary file modified _framework/System.Xml.ReaderWriter.wasm.gz
Binary file not shown.
Binary file modified _framework/System.Xml.XDocument.wasm
Binary file not shown.
Binary file modified _framework/System.Xml.XDocument.wasm.br
Binary file not shown.
Binary file modified _framework/System.Xml.XDocument.wasm.gz
Binary file not shown.
Binary file modified _framework/System.wasm
Binary file not shown.
Binary file modified _framework/System.wasm.br
Binary file not shown.
Binary file modified _framework/System.wasm.gz
Binary file not shown.
110 changes: 55 additions & 55 deletions _framework/blazor.boot.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"mainAssemblyName": "Plotly.Blazor.Examples",
"resources": {
"hash": "sha256-dFO9ignVjLSpz+YeAvW5UsRrKfD9mEgdwm6M0k5JnWA=",
"hash": "sha256-6fGE4iZRBJkh0VXFtKPpMvwEivv/0N3VvwxNLSi+a4s=",
"jsModuleNative": {
"dotnet.native.8.0.6.izqc6d27f9.js": "sha256-pfVGGBZPwG2vFybJHSmyg+2bVn4X4Pl4yKGBhk87OLw="
"dotnet.native.8.0.8.izqc6d27f9.js": "sha256-TdnZlUS6KFLqkEiaenkVN7NzFET/nbZZKy1yHsq/Yfw="
},
"jsModuleRuntime": {
"dotnet.runtime.8.0.6.cfhqwq2l7j.js": "sha256-+E96dgYQl8OrHQb4yNZ7QwNr3SZzLSP8lwKRzwSiMsw="
"dotnet.runtime.8.0.8.80cvijctdx.js": "sha256-0Dpj/NkVD5WqSC16ZvJLmlc38iv9+Je+umYBVOycPVU="
},
"wasmNative": {
"dotnet.native.wasm": "sha256-YVjFVCn7dMTq2pkK0hqtiwiQinCe3cIaUadtPSasWgg="
"dotnet.native.wasm": "sha256-jwlediCckpYwZG0DlmBgcL1yVz86AgIvedWUNmKH0Uc="
},
"icu": {
"icudt_CJK.dat": "sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=",
"icudt_EFIGS.dat": "sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=",
"icudt_no_CJK.dat": "sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="
},
"assembly": {
"Microsoft.AspNetCore.Components.wasm": "sha256-oN6jjNq6SMpHSU3m3u83fqqj4nKpU0QNrJSeSMLNgWs=",
"Microsoft.AspNetCore.Components.Web.wasm": "sha256-jVZgx6gTk4SOheTHS+nwnm1/mi5LVIKFDTMmT8WpBSA=",
"Microsoft.AspNetCore.Components.WebAssembly.wasm": "sha256-ulFkGoRTLg564UaA76K9NB9rW6aM52ZgUTyq+8AFepk=",
"Microsoft.CSharp.wasm": "sha256-00F7HmZhGkBifdldTho2NVcX1BxrHk0ACSpkX4KviaU=",
"Microsoft.AspNetCore.Components.wasm": "sha256-wui0QmzHazzObLvIPWIMssViRzx272m4I4JPFEs7GAo=",
"Microsoft.AspNetCore.Components.Web.wasm": "sha256-vKNU7yeUEbPyvML8cuK66n4Ml+dtMDYG0C6728VOh1k=",
"Microsoft.AspNetCore.Components.WebAssembly.wasm": "sha256-i7BFS7kSIcs5yc1KSmT4PIGH1L0Qh/VkcUnWgp/Lnp8=",
"Microsoft.CSharp.wasm": "sha256-XA0E1Z4IhJcopS/t3N9Eh4Bc5WcG0w/f2Vzrm0EegS8=",
"Microsoft.Extensions.Configuration.Abstractions.wasm": "sha256-87sn2TYqgdZ95sXmavjKEzoEfMgHnYQ9LOvnMX+aZcI=",
"Microsoft.Extensions.Configuration.Json.wasm": "sha256-Sxmy2ZS134URxbHEvdbS6NcQ3zXS7UWx/5ZPpwiW7FA=",
"Microsoft.Extensions.Configuration.wasm": "sha256-jYqHUZ07UYWc8POk7xhas6xQYH7t1qoTcylqoDqncJk=",
Expand All @@ -32,55 +32,55 @@
"Microsoft.Extensions.Logging.wasm": "sha256-8BH+kQfjYuZWxprOICXJ4+tU0OdJOYDKN7G0S3zYYHI=",
"Microsoft.Extensions.Options.wasm": "sha256-gE1BXyLWVUnQwUrxnkNGo22RSc/PIEaAypz1VWboWP4=",
"Microsoft.Extensions.Primitives.wasm": "sha256-Ms2HR5Gpug/0uRAzdk4SUNT76Ml3CjFv9Jo+dUIMGac=",
"Microsoft.JSInterop.wasm": "sha256-YjVbaXXdxhNmCJJEch07jFsdP7uuxXUvC+PrzoDd1ik=",
"Microsoft.JSInterop.WebAssembly.wasm": "sha256-nJo9AftA2/mHxtXapqHsgjzQgIHOpue2DnVtxkgTSME=",
"Microsoft.JSInterop.wasm": "sha256-GvIqIhtveQHeUrS2R0dml6ceUTwILNDpD7Mir3JP4Us=",
"Microsoft.JSInterop.WebAssembly.wasm": "sha256-sLSiCKh0RQEV/2cl05tr7wOLWzExQfPZovvpqYLJduQ=",
"MudBlazor.wasm": "sha256-C+DeDD6axcsTfO8KZMgfOJUPncfl0SLoA62E4TP3KY8=",
"Newtonsoft.Json.wasm": "sha256-GlXMWKvDs45M2pACoR3Y4Qh8mcrOZGljqmvJY+6JZ5s=",
"Plotly.Blazor.Examples.wasm": "sha256-jfdUDojrBOKuw0K6CRjC4k5jS90/jtqEsSVcN9BI00w=",
"Plotly.Blazor.wasm": "sha256-dZKT2Ltk2KnXY9gv+OGCzkOErKLZntNTyvF/mShBuQs=",
"System.Collections.Concurrent.wasm": "sha256-pYEYQbN+eGKQNojqoFcNWFJX2ABIrKOZvSy3EvDvkAU=",
"System.Collections.Immutable.wasm": "sha256-nEBqy90KLVIxFjR505DuD9KuN0xZMESD1uI7/aOyLDo=",
"System.Collections.NonGeneric.wasm": "sha256-vavuiaugT6jap1zmRTI5UEV4dbz3087iGwueAHrqFFw=",
"System.Collections.Specialized.wasm": "sha256-d+iRVSYGNFcmAX4zl8dWmb97vaBIDoPZH8MxOZlSfsQ=",
"System.Collections.wasm": "sha256-e9yv70sVw6BIjSQdR7880Nl80Q/JnteblXFVU3GhA0w=",
"System.ComponentModel.Primitives.wasm": "sha256-vZSMhCR6Hc9IxoSyUxEHfRdJWxEzvH7+0/xrGqHPRAs=",
"System.ComponentModel.TypeConverter.wasm": "sha256-g8ulJBIVpq117n3WVWc8ww47D0Ye1CS3AOdYChJO6ME=",
"System.ComponentModel.wasm": "sha256-c95vapB6PYEawJ4WzDoAbDk8GZcDT6P7AUIlln0cFv8=",
"System.Console.wasm": "sha256-NvKTlr2fGhFZv+OaRuWOiz98q/n1rS/UmQGOYZFcmWs=",
"System.Data.Common.wasm": "sha256-33veEE4J7zma9jfcwHFgsKTngR2ignWgh23rpqlh+60=",
"System.Diagnostics.DiagnosticSource.wasm": "sha256-ftbUF2p2anlpXGKh6iOqvmQxJdKac97UqvWHrXYAFTo=",
"System.Diagnostics.TraceSource.wasm": "sha256-YRVskicRW6lyuyBAKg8uh5YiPzYn7F1PI9BC8BKjBz8=",
"System.Drawing.Primitives.wasm": "sha256-+H9HnBs0xl/nksPaBtif5nSu2D+qAYzEN9p6ec69Ksg=",
"System.Drawing.wasm": "sha256-1c5w+7Q4D055lTXlv7flaGdvCXnGH2YKe3k/e7Kkqeg=",
"System.Linq.Expressions.wasm": "sha256-vQgHVqml0HL996rqB2JHSHYzV1A0sRWFPOdjn8Zv/N4=",
"System.Linq.wasm": "sha256-V/62YpqDsOPNQoAZUkUXstFacG/s46whAzQnyR6lEEw=",
"System.Memory.wasm": "sha256-05mq1d5+fl+Jf5Opq0AK/NVhyxi2j4gf2wsx7fffDws=",
"System.Net.Http.wasm": "sha256-ia1xG8O7HafhotytcTySsE/8zo05JNYE37jOG8LCOIg=",
"System.Net.Primitives.wasm": "sha256-7sAf8xqj946a0pEPie61ZWk2smlZvxMHl0pgOnX2ow4=",
"System.ObjectModel.wasm": "sha256-BuLK91MOxUaxTS6YDFOh3UiJx5g1iZCnWhrjdMLaSyw=",
"System.Private.CoreLib.wasm": "sha256-qEXbTOtiCdZWKJApv2WCi1tnFnKKYsPmvHLyOOTYPpc=",
"System.Private.Uri.wasm": "sha256-kDjkAOC95t4Dh7zdEa3SJ++AVav0BD6lMSJwp9VM0fw=",
"System.Private.Xml.Linq.wasm": "sha256-5NIJvcdD3De0kcRDbJEQS6klIe/i1eO/d1McvdVd6ts=",
"System.Private.Xml.wasm": "sha256-+GwZEGqTeTfw/uVk/n0QZkHDA9n+wTpxfxoFp+hDOiA=",
"System.Reflection.Emit.ILGeneration.wasm": "sha256-hVvnod24dzKl641iwTW14rsqMOBPclwCAjzC5+qcuzs=",
"System.Reflection.Emit.Lightweight.wasm": "sha256-0fg5QcnpXxefKE1ygE2sXFr1ZNlb8V3E0dmQiGNmkIc=",
"System.Reflection.Primitives.wasm": "sha256-i570fSRsEJX8NWDS4u7OINF4TijPbhjSZFmr2SgqMq4=",
"System.Runtime.InteropServices.JavaScript.wasm": "sha256-gafT6wlyc/9LXYJc9FN4IETkzPKzNU7itTlpS6JE5mc=",
"System.Runtime.InteropServices.wasm": "sha256-EcpfALLg9HQZTe0FTuJ4tvPPuK+/kVGv42iK4UC9lyo=",
"System.Runtime.Numerics.wasm": "sha256-FvDIyQvHcz8tnASNm49ItnJf5z9W3OVoDoxjRLSdCsQ=",
"System.Runtime.Serialization.Formatters.wasm": "sha256-Js4G5dw/s2DoVYKT8KDsYLIQiefxwgPcMDZi1nrYX1Y=",
"System.Runtime.Serialization.Primitives.wasm": "sha256-h/R90OYgUu4+Gg5fmdbto+aE5u/LPNV7JOh5fac9K7E=",
"System.Runtime.wasm": "sha256-AZJjZIGAcfGeYr+i/ZMWjLw7/QElm+n9TrrbwlE/SIY=",
"System.Security.Cryptography.wasm": "sha256-XoX1Wb2YcMPZlLVBUQlTvMBuBKWr7w3GXE/c6odspVs=",
"System.Text.Encoding.Extensions.wasm": "sha256-wd5JKnrIbXFrDc+Nr9C7d0SsuPGVBD1NCCAtfCej2eE=",
"System.Text.Encodings.Web.wasm": "sha256-4o2rdYqn28fSExbJwk6xMl9O0sSvL+Yd9iDQ8+UW0jg=",
"System.Text.Json.wasm": "sha256-G/M/fqrT6Cf76r1VCzwXvgW+LQCdljZ/twGPkjOsSDs=",
"System.Text.RegularExpressions.wasm": "sha256-p3VcoNKzgetX2pC4KwXOipEVwOkRiWEn38xmkUOnRpk=",
"System.Threading.wasm": "sha256-cj+0KfD1QETW7PneFnNDHuor7wNHJ52f4wlSXOtd79o=",
"System.wasm": "sha256-ebjgSlOswwIVl6vCKxSWfkZlcWzXp5P2U87gypSQ52U=",
"System.Xml.Linq.wasm": "sha256-boUyMjD8tjpz+RHjMOdCJbIG/hcEQuorcGhKEvCs9Ys=",
"System.Xml.ReaderWriter.wasm": "sha256-jCT4+BquEMUHoik62ALmyoDCDQ2B37UKPwiot+7LKzQ=",
"System.Xml.XDocument.wasm": "sha256-2EMN2rk2MilmnBGG73CPy03svcUTyJo3FEAsgRRkfsk="
"Plotly.Blazor.Examples.wasm": "sha256-WXzBi9+l8xz9pfoeOipKg1dAF+FrGt8iSIP+Gs45z+U=",
"Plotly.Blazor.wasm": "sha256-+R9nuEKok6g3yB4ShejUbDHfOOFJkKxbSVRKGFw6qKU=",
"System.Collections.Concurrent.wasm": "sha256-CLHDMSkrRE94w6nJmQSHL3x+Vu5O1jA43URIRxQA0z8=",
"System.Collections.Immutable.wasm": "sha256-0imdyZ8rWGleznaIUxhWZhTA6juyRYe6yU+2cvUDNGc=",
"System.Collections.NonGeneric.wasm": "sha256-sK8kDnVci1HIJi248etu7BdPdUYv/5OTn6F3IIrht2A=",
"System.Collections.Specialized.wasm": "sha256-1ucnXLsa08LdgxAI0Vet+0vGzULnnoH4eqryAPEIDJc=",
"System.Collections.wasm": "sha256-O+ZyAvbpFhcxK5XUa5hBz8Mtad78jzfCSVs6l0KxfiY=",
"System.ComponentModel.Primitives.wasm": "sha256-4hOTrdT2G1ceJ7iOmgpoLGgLRfZwokIToXmGDoXl/BU=",
"System.ComponentModel.TypeConverter.wasm": "sha256-8BgllwkN2ZlRHSLH0/wIPDa8vaBNqGx5TB7klxmzF/4=",
"System.ComponentModel.wasm": "sha256-jdMDd4eUHFHmpkMQXpO5qSl5zzdi3uQxuHIVwc6zSXc=",
"System.Console.wasm": "sha256-NXRggEenT63nw7Q04tCP404SSaNADJdUH5WDlSTE4Mc=",
"System.Data.Common.wasm": "sha256-KQj1hkRsCisC1r62mNag0fLvKfBzcwRAR58/JoXEd+8=",
"System.Diagnostics.DiagnosticSource.wasm": "sha256-c5Wztan+uxz1SGG6NtZ6R6hXmWzmNAfdrfEyCP9kCWc=",
"System.Diagnostics.TraceSource.wasm": "sha256-TdSarmmNxII+EYtpiqq5JW97JrtBp+QifyIM+yhDxuw=",
"System.Drawing.Primitives.wasm": "sha256-G3T4t+fLorYZXrVYGeA+xTWVYD8obaNLi3wHLzpKSv0=",
"System.Drawing.wasm": "sha256-zjAInrNYLc3W8ZqOFpcGyFWbxCJ66GlsyYKDWLP+tqk=",
"System.Linq.Expressions.wasm": "sha256-8GSqA/CrR7nkIqR6HGjdB/mwC5swxC03e1Q845FrSiA=",
"System.Linq.wasm": "sha256-VZOxi9oMRgPNoY68eAkCqEA5qXUJ8XbGxqDCMy+vlAM=",
"System.Memory.wasm": "sha256-6/G11vxTbcriqPUK7g+vWDhKlVduFde+WxaUB0NL0z4=",
"System.Net.Http.wasm": "sha256-hXeIHvu+vBO6eBvklx5tPqgeAydxgmecWr97OeeYizw=",
"System.Net.Primitives.wasm": "sha256-9XtuT/hRRp+Dbz7zL2czMsJ+405ppwSC+XY4mCYr6Kw=",
"System.ObjectModel.wasm": "sha256-euQUreYz3yKG1wUIvcXAivrq1Rb0+SJYQifVQiepOmc=",
"System.Private.CoreLib.wasm": "sha256-yGrrgEu0BgoOGHaJpx6kZFAW0biDG9HNX9nPkWZFbeY=",
"System.Private.Uri.wasm": "sha256-oIx6a0jLzmUGkY8T1s/ZrmbU+7frkzl+HwoCQ+oT4Bo=",
"System.Private.Xml.Linq.wasm": "sha256-5dR/V4Uy94QUUiEHpBun0ZQlrFgp0uWCs6mkkeGin7g=",
"System.Private.Xml.wasm": "sha256-65HWToGkw3HFcyHDufHph6HhoSCkv0Deeq1eNjqir3g=",
"System.Reflection.Emit.ILGeneration.wasm": "sha256-2g1sqf69Qqrv+URJf7V0vF1BkenqyMMCFFmEhRDWOcw=",
"System.Reflection.Emit.Lightweight.wasm": "sha256-T+OiiqqkorOr68qeFDWeENEZHn2hwaxOALEuZsF6ZJ0=",
"System.Reflection.Primitives.wasm": "sha256-Ntg+e5DHIH1u05Av2N96iV3l0GD3RdSkxWD7SHQiKiY=",
"System.Runtime.InteropServices.JavaScript.wasm": "sha256-lxdsSKM2nYdr8hFsiNXUaaW/Q9Xf1oTdADKDJWz8MlA=",
"System.Runtime.InteropServices.wasm": "sha256-fTWztfomcRdcItsMju9TaKYVL4636TaekAasC64SIzk=",
"System.Runtime.Numerics.wasm": "sha256-fSw8TvdnFf+l77jPXxtntCdX9rSDg8R9ID7IY5O+E8I=",
"System.Runtime.Serialization.Formatters.wasm": "sha256-ysQGnDinta2x1dWdZHSEsI29Jno4zJIku/wdDZkxi+Q=",
"System.Runtime.Serialization.Primitives.wasm": "sha256-+wpMdJI9cZVB1ajDRXWDrqbydmvflXMBNzJ2/hB27/E=",
"System.Runtime.wasm": "sha256-QJn4X3g+EhoQWGLxyNI/JveIyb2TIcd/8Jaqz2irLvg=",
"System.Security.Cryptography.wasm": "sha256-5q9sBhP4SAshTt4iCIsJXKwC9O8t96EkG6yhl2O++cQ=",
"System.Text.Encoding.Extensions.wasm": "sha256-fwD4MZD1wsiSNU8kks4XNu49fktGDBh1N/YCVimZaEI=",
"System.Text.Encodings.Web.wasm": "sha256-ZFaIE23VKT7zofLq7sPTV5T0sbwyGEYbpUhuN2x5F1A=",
"System.Text.Json.wasm": "sha256-WjQh5n2be2AjTSGPijnjyPpINZfYjpDCe/sJhSqtADw=",
"System.Text.RegularExpressions.wasm": "sha256-EQ9eh8Rg4fPn/1jZt7hFqmPgz9lZGx9VZOsexBlVDoQ=",
"System.Threading.wasm": "sha256-Iio2wPLlYRqfVgRqHEE+85aBCQ7jItldJgeNz/t7jkI=",
"System.wasm": "sha256-ka1SPMSVGn53xDzeBa40FQCsprKEF+n+wpvvd1HyMNE=",
"System.Xml.Linq.wasm": "sha256-HlRrZVV0I3aFROhHHNi0l7sg1EQtWzq9yru1hwa+ooY=",
"System.Xml.ReaderWriter.wasm": "sha256-7SEAUeN3/64WLhzpbWcWhCqLJD4wsPFdLNbtJjWfP24=",
"System.Xml.XDocument.wasm": "sha256-BNfH92A0LaMfznE7NQFrfL0X1sP66dAMlr+F3zCOsfg="
}
},
"cacheBootResources": true,
Expand Down
Binary file modified _framework/blazor.boot.json.br
Binary file not shown.
Binary file modified _framework/blazor.boot.json.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion _framework/dotnet.js

Large diffs are not rendered by default.

Binary file modified _framework/dotnet.js.br
Binary file not shown.
Binary file modified _framework/dotnet.js.gz
Binary file not shown.
Binary file removed _framework/dotnet.native.8.0.6.izqc6d27f9.js.br
Binary file not shown.

Large diffs are not rendered by default.

Binary file added _framework/dotnet.native.8.0.8.izqc6d27f9.js.br
Binary file not shown.
Binary file not shown.
Binary file modified _framework/dotnet.native.wasm
Binary file not shown.
Binary file modified _framework/dotnet.native.wasm.br
Binary file not shown.
Binary file modified _framework/dotnet.native.wasm.gz
Binary file not shown.
Binary file removed _framework/dotnet.runtime.8.0.6.cfhqwq2l7j.js.br
Binary file not shown.
Binary file removed _framework/dotnet.runtime.8.0.6.cfhqwq2l7j.js.gz
Binary file not shown.

Large diffs are not rendered by default.

Binary file added _framework/dotnet.runtime.8.0.8.80cvijctdx.js.br
Binary file not shown.
Binary file added _framework/dotnet.runtime.8.0.8.80cvijctdx.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion brotliloader.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3f14132

Please sign in to comment.