🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@angular/platform-browser-dynamic

Package Overview
Dependencies
Maintainers
2
Versions
1081
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@angular/platform-browser-dynamic - npm Package Compare versions

Comparing version
22.1.0-next.5
to
22.1.0-next.6
+5
-5
fesm2022/platform-browser-dynamic.mjs
/**
* @license Angular v22.1.0-next.5
* @license Angular v22.1.0-next.6
* (c) 2010-2026 Google LLC. https://angular.dev/

@@ -12,3 +12,3 @@ * License: MIT

const VERSION = /* @__PURE__ */new Version('22.1.0-next.5');
const VERSION = /* @__PURE__ */new Version('22.1.0-next.6');

@@ -96,3 +96,3 @@ const COMPILER_PROVIDERS = [{

minVersion: "12.0.0",
version: "22.1.0-next.5",
version: "22.1.0-next.6",
ngImport: i0,

@@ -105,3 +105,3 @@ type: ResourceLoaderImpl,

minVersion: "12.0.0",
version: "22.1.0-next.5",
version: "22.1.0-next.6",
ngImport: i0,

@@ -113,3 +113,3 @@ type: ResourceLoaderImpl

minVersion: "12.0.0",
version: "22.1.0-next.5",
version: "22.1.0-next.6",
ngImport: i0,

@@ -116,0 +116,0 @@ type: ResourceLoaderImpl,

@@ -1,1 +0,1 @@

{"version":3,"file":"platform-browser-dynamic.mjs","sources":["../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/packages/platform-browser-dynamic/src/version.ts","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/packages/platform-browser-dynamic/src/compiler_factory.ts","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/packages/platform-browser-dynamic/src/resource_loader/resource_loader_impl.ts","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/packages/platform-browser-dynamic/src/platform_providers.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\n/**\n * @module\n * @description\n * Entry point for all public APIs of the platform-browser-dynamic package.\n */\n\nimport {Version} from '@angular/core';\n\n/**\n * @publicApi\n */\nexport const VERSION = /* @__PURE__ */ new Version('22.1.0-next.5');\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {CompilerConfig} from '@angular/compiler';\nimport {\n Compiler,\n CompilerFactory,\n CompilerOptions,\n Injector,\n StaticProvider,\n ViewEncapsulation,\n} from '@angular/core';\n\nexport const COMPILER_PROVIDERS = <StaticProvider[]>[\n {provide: Compiler, useFactory: () => new Compiler()},\n];\n/**\n * @publicApi\n *\n * @deprecated\n * Ivy JIT mode doesn't require accessing this symbol.\n */\nexport class JitCompilerFactory implements CompilerFactory {\n private _defaultOptions: CompilerOptions[];\n\n /** @internal */\n constructor(defaultOptions: CompilerOptions[]) {\n const compilerOptions: CompilerOptions = {\n defaultEncapsulation: ViewEncapsulation.Emulated,\n };\n\n this._defaultOptions = [compilerOptions, ...defaultOptions];\n }\n\n createCompiler(options: CompilerOptions[] = []): Compiler {\n const opts = _mergeOptions(this._defaultOptions.concat(options));\n const injector = Injector.create({\n providers: [\n COMPILER_PROVIDERS,\n {\n provide: CompilerConfig,\n useFactory: () => {\n return new CompilerConfig({\n defaultEncapsulation: opts.defaultEncapsulation,\n preserveWhitespaces: opts.preserveWhitespaces,\n });\n },\n deps: [],\n },\n opts.providers!,\n ],\n });\n return injector.get(Compiler);\n }\n}\n\nfunction _mergeOptions(optionsArr: CompilerOptions[]): CompilerOptions {\n return {\n defaultEncapsulation: _lastDefined(optionsArr.map((options) => options.defaultEncapsulation)),\n providers: _mergeArrays(optionsArr.map((options) => options.providers!)),\n preserveWhitespaces: _lastDefined(optionsArr.map((options) => options.preserveWhitespaces)),\n };\n}\n\nfunction _lastDefined<T>(args: T[]): T | undefined {\n for (let i = args.length - 1; i >= 0; i--) {\n if (args[i] !== undefined) {\n return args[i];\n }\n }\n return undefined;\n}\n\nfunction _mergeArrays(parts: any[][]): any[] {\n const result: any[] = [];\n parts.forEach((part) => part && result.push(...part));\n return result;\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\nimport {ResourceLoader} from '@angular/compiler';\nimport {Injectable} from '@angular/core';\n\n@Injectable()\nexport class ResourceLoaderImpl extends ResourceLoader {\n override get(url: string): Promise<string> {\n let resolve: (result: any) => void;\n let reject: (error: any) => void;\n const promise = new Promise<string>((res, rej) => {\n resolve = res;\n reject = rej;\n });\n const xhr = new XMLHttpRequest();\n xhr.open('GET', url, true);\n xhr.responseType = 'text';\n\n xhr.onload = function () {\n const response = xhr.response;\n\n let status = xhr.status;\n\n // fix status code when it is 0 (0 status is undocumented).\n // Occurs when accessing file resources or on Android 4.1 stock browser\n // while retrieving files from application cache.\n if (status === 0) {\n status = response ? 200 : 0;\n }\n\n if (200 <= status && status <= 300) {\n resolve(response);\n } else {\n reject(`Failed to load ${url}`);\n }\n };\n\n xhr.onerror = function () {\n reject(`Failed to load ${url}`);\n };\n\n xhr.send();\n return promise;\n }\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {\n COMPILER_OPTIONS,\n CompilerFactory,\n createPlatformFactory,\n PlatformRef,\n StaticProvider,\n} from '@angular/core';\nimport {platformBrowser} from '@angular/platform-browser';\nimport {ResourceLoader} from '@angular/compiler';\nimport {ResourceLoaderImpl} from './resource_loader/resource_loader_impl';\nimport {JitCompilerFactory} from './compiler_factory';\n\nconst INTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS: StaticProvider[] = [\n {\n provide: COMPILER_OPTIONS,\n useValue: {providers: [{provide: ResourceLoader, useClass: ResourceLoaderImpl, deps: []}]},\n multi: true,\n },\n {provide: CompilerFactory, useClass: JitCompilerFactory, deps: [COMPILER_OPTIONS]},\n];\n\n/**\n * @deprecated Use the `platformBrowser` function instead from `@angular/platform-browser`.\n * In case you are not in a CLI app and rely on JIT compilation, you will also need to import `@angular/compiler`\n */\nexport const platformBrowserDynamic: (extraProviders?: StaticProvider[]) => PlatformRef =\n createPlatformFactory(\n platformBrowser,\n 'browserDynamic',\n INTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS,\n );\n"],"names":[],"mappings":"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"}
{"version":3,"file":"platform-browser-dynamic.mjs","sources":["../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/packages/platform-browser-dynamic/src/version.ts","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/packages/platform-browser-dynamic/src/compiler_factory.ts","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/packages/platform-browser-dynamic/src/resource_loader/resource_loader_impl.ts","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/packages/platform-browser-dynamic/src/platform_providers.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\n/**\n * @module\n * @description\n * Entry point for all public APIs of the platform-browser-dynamic package.\n */\n\nimport {Version} from '@angular/core';\n\n/**\n * @publicApi\n */\nexport const VERSION = /* @__PURE__ */ new Version('22.1.0-next.6');\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {CompilerConfig} from '@angular/compiler';\nimport {\n Compiler,\n CompilerFactory,\n CompilerOptions,\n Injector,\n StaticProvider,\n ViewEncapsulation,\n} from '@angular/core';\n\nexport const COMPILER_PROVIDERS = <StaticProvider[]>[\n {provide: Compiler, useFactory: () => new Compiler()},\n];\n/**\n * @publicApi\n *\n * @deprecated\n * Ivy JIT mode doesn't require accessing this symbol.\n */\nexport class JitCompilerFactory implements CompilerFactory {\n private _defaultOptions: CompilerOptions[];\n\n /** @internal */\n constructor(defaultOptions: CompilerOptions[]) {\n const compilerOptions: CompilerOptions = {\n defaultEncapsulation: ViewEncapsulation.Emulated,\n };\n\n this._defaultOptions = [compilerOptions, ...defaultOptions];\n }\n\n createCompiler(options: CompilerOptions[] = []): Compiler {\n const opts = _mergeOptions(this._defaultOptions.concat(options));\n const injector = Injector.create({\n providers: [\n COMPILER_PROVIDERS,\n {\n provide: CompilerConfig,\n useFactory: () => {\n return new CompilerConfig({\n defaultEncapsulation: opts.defaultEncapsulation,\n preserveWhitespaces: opts.preserveWhitespaces,\n });\n },\n deps: [],\n },\n opts.providers!,\n ],\n });\n return injector.get(Compiler);\n }\n}\n\nfunction _mergeOptions(optionsArr: CompilerOptions[]): CompilerOptions {\n return {\n defaultEncapsulation: _lastDefined(optionsArr.map((options) => options.defaultEncapsulation)),\n providers: _mergeArrays(optionsArr.map((options) => options.providers!)),\n preserveWhitespaces: _lastDefined(optionsArr.map((options) => options.preserveWhitespaces)),\n };\n}\n\nfunction _lastDefined<T>(args: T[]): T | undefined {\n for (let i = args.length - 1; i >= 0; i--) {\n if (args[i] !== undefined) {\n return args[i];\n }\n }\n return undefined;\n}\n\nfunction _mergeArrays(parts: any[][]): any[] {\n const result: any[] = [];\n parts.forEach((part) => part && result.push(...part));\n return result;\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\nimport {ResourceLoader} from '@angular/compiler';\nimport {Injectable} from '@angular/core';\n\n@Injectable()\nexport class ResourceLoaderImpl extends ResourceLoader {\n override get(url: string): Promise<string> {\n let resolve: (result: any) => void;\n let reject: (error: any) => void;\n const promise = new Promise<string>((res, rej) => {\n resolve = res;\n reject = rej;\n });\n const xhr = new XMLHttpRequest();\n xhr.open('GET', url, true);\n xhr.responseType = 'text';\n\n xhr.onload = function () {\n const response = xhr.response;\n\n let status = xhr.status;\n\n // fix status code when it is 0 (0 status is undocumented).\n // Occurs when accessing file resources or on Android 4.1 stock browser\n // while retrieving files from application cache.\n if (status === 0) {\n status = response ? 200 : 0;\n }\n\n if (200 <= status && status <= 300) {\n resolve(response);\n } else {\n reject(`Failed to load ${url}`);\n }\n };\n\n xhr.onerror = function () {\n reject(`Failed to load ${url}`);\n };\n\n xhr.send();\n return promise;\n }\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {\n COMPILER_OPTIONS,\n CompilerFactory,\n createPlatformFactory,\n PlatformRef,\n StaticProvider,\n} from '@angular/core';\nimport {platformBrowser} from '@angular/platform-browser';\nimport {ResourceLoader} from '@angular/compiler';\nimport {ResourceLoaderImpl} from './resource_loader/resource_loader_impl';\nimport {JitCompilerFactory} from './compiler_factory';\n\nconst INTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS: StaticProvider[] = [\n {\n provide: COMPILER_OPTIONS,\n useValue: {providers: [{provide: ResourceLoader, useClass: ResourceLoaderImpl, deps: []}]},\n multi: true,\n },\n {provide: CompilerFactory, useClass: JitCompilerFactory, deps: [COMPILER_OPTIONS]},\n];\n\n/**\n * @deprecated Use the `platformBrowser` function instead from `@angular/platform-browser`.\n * In case you are not in a CLI app and rely on JIT compilation, you will also need to import `@angular/compiler`\n */\nexport const platformBrowserDynamic: (extraProviders?: StaticProvider[]) => PlatformRef =\n createPlatformFactory(\n platformBrowser,\n 'browserDynamic',\n INTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS,\n );\n"],"names":[],"mappings":"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"}
/**
* @license Angular v22.1.0-next.5
* @license Angular v22.1.0-next.6
* (c) 2010-2026 Google LLC. https://angular.dev/

@@ -18,3 +18,3 @@ * License: MIT

minVersion: "12.0.0",
version: "22.1.0-next.5",
version: "22.1.0-next.6",
ngImport: i0,

@@ -27,3 +27,3 @@ type: BrowserDynamicTestingModule,

minVersion: "14.0.0",
version: "22.1.0-next.5",
version: "22.1.0-next.6",
ngImport: i0,

@@ -35,3 +35,3 @@ type: BrowserDynamicTestingModule,

minVersion: "12.0.0",
version: "22.1.0-next.5",
version: "22.1.0-next.6",
ngImport: i0,

@@ -44,3 +44,3 @@ type: BrowserDynamicTestingModule,

minVersion: "12.0.0",
version: "22.1.0-next.5",
version: "22.1.0-next.6",
ngImport: i0,

@@ -47,0 +47,0 @@ type: BrowserDynamicTestingModule,

{
"name": "@angular/platform-browser-dynamic",
"version": "22.1.0-next.5",
"version": "22.1.0-next.6",
"description": "Angular - library for using Angular in a web browser with JIT compilation",

@@ -14,6 +14,6 @@ "author": "angular",

"peerDependencies": {
"@angular/core": "22.1.0-next.5",
"@angular/common": "22.1.0-next.5",
"@angular/compiler": "22.1.0-next.5",
"@angular/platform-browser": "22.1.0-next.5"
"@angular/core": "22.1.0-next.6",
"@angular/common": "22.1.0-next.6",
"@angular/compiler": "22.1.0-next.6",
"@angular/platform-browser": "22.1.0-next.6"
},

@@ -20,0 +20,0 @@ "repository": {

/**
* @license Angular v22.1.0-next.5
* @license Angular v22.1.0-next.6
* (c) 2010-2026 Google LLC. https://angular.dev/

@@ -4,0 +4,0 @@ * License: MIT

/**
* @license Angular v22.1.0-next.5
* @license Angular v22.1.0-next.6
* (c) 2010-2026 Google LLC. https://angular.dev/

@@ -4,0 +4,0 @@ * License: MIT