From 5ffb050028cc3c74fccf934e016147fa8836ee05 Mon Sep 17 00:00:00 2001 From: Ilona Tomkowicz <32700855+ilonatommy@users.noreply.github.com> Date: Tue, 14 May 2024 17:36:12 +0000 Subject: [PATCH 1/3] Fix. --- src/Components/dotnet-runtime-js/dotnet.d.ts | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/Components/dotnet-runtime-js/dotnet.d.ts b/src/Components/dotnet-runtime-js/dotnet.d.ts index ae215698889d..1afd3241c7d7 100644 --- a/src/Components/dotnet-runtime-js/dotnet.d.ts +++ b/src/Components/dotnet-runtime-js/dotnet.d.ts @@ -3,7 +3,7 @@ //! //! This is generated file, see src/mono/wasm/runtime/rollup.config.js -//! This is not considered public API with backward compatibility guarantees. +//! This is not considered public API with backward compatibility guarantees. declare interface NativePointer { __brandNativePointer: "NativePointer"; @@ -179,6 +179,7 @@ interface ResourceGroups { lazyAssembly?: ResourceList; pdb?: ResourceList; jsModuleWorker?: ResourceList; + jsModuleGlobalization?: ResourceList; jsModuleNative: ResourceList; jsModuleRuntime: ResourceList; wasmSymbols?: ResourceList; @@ -250,7 +251,7 @@ interface AssetEntry extends ResourceRequest { */ pendingDownload?: LoadingResource; } -type SingleAssetBehaviors = +type SingleAssetBehaviors = /** * The binary of the dotnet runtime. */ @@ -271,11 +272,15 @@ type SingleAssetBehaviors = * The javascript module for emscripten. */ | "js-module-native" +/** + * The javascript module for hybrid globalization. + */ + | "js-module-globalization" /** * Typically blazor.boot.json */ | "manifest"; -type AssetBehaviors = SingleAssetBehaviors | +type AssetBehaviors = SingleAssetBehaviors | /** * Load asset as a managed resource assembly. */ From 027c38c2f29c9c8d0019ad21eca03f0ba22a44c2 Mon Sep 17 00:00:00 2001 From: Ilona Tomkowicz <32700855+ilonatommy@users.noreply.github.com> Date: Mon, 27 May 2024 12:47:33 +0200 Subject: [PATCH 2/3] Add spaces to restore original formatting. --- src/Components/dotnet-runtime-js/dotnet.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Components/dotnet-runtime-js/dotnet.d.ts b/src/Components/dotnet-runtime-js/dotnet.d.ts index 1afd3241c7d7..ef7eba05c75a 100644 --- a/src/Components/dotnet-runtime-js/dotnet.d.ts +++ b/src/Components/dotnet-runtime-js/dotnet.d.ts @@ -3,7 +3,7 @@ //! //! This is generated file, see src/mono/wasm/runtime/rollup.config.js -//! This is not considered public API with backward compatibility guarantees. +//! This is not considered public API with backward compatibility guarantees. declare interface NativePointer { __brandNativePointer: "NativePointer"; @@ -280,7 +280,7 @@ type SingleAssetBehaviors = * Typically blazor.boot.json */ | "manifest"; -type AssetBehaviors = SingleAssetBehaviors | +type AssetBehaviors = SingleAssetBehaviors | /** * Load asset as a managed resource assembly. */ From 899bc1d40725ec19aa28dfe2dea3268b4fa68d49 Mon Sep 17 00:00:00 2001 From: Ilona Tomkowicz <32700855+ilonatommy@users.noreply.github.com> Date: Mon, 27 May 2024 12:48:04 +0200 Subject: [PATCH 3/3] Missing space --- src/Components/dotnet-runtime-js/dotnet.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/dotnet-runtime-js/dotnet.d.ts b/src/Components/dotnet-runtime-js/dotnet.d.ts index ef7eba05c75a..1fc6e2952fe2 100644 --- a/src/Components/dotnet-runtime-js/dotnet.d.ts +++ b/src/Components/dotnet-runtime-js/dotnet.d.ts @@ -251,7 +251,7 @@ interface AssetEntry extends ResourceRequest { */ pendingDownload?: LoadingResource; } -type SingleAssetBehaviors = +type SingleAssetBehaviors = /** * The binary of the dotnet runtime. */