New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

aurelia

Package Overview
Dependencies
Maintainers
2
Versions
736
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aurelia - npm Package Compare versions

Comparing version 2.0.0-beta.13 to 2.0.0-beta.14

17

CHANGELOG.md

@@ -6,2 +6,19 @@ # Change Log

<a name="2.0.0-beta.14"></a>
# 2.0.0-beta.14 (2024-04-03)
### Features:
* **i18n:** support multiple versions of i18next (#1927) ([0789ee5](https://github.com/aurelia/aurelia/commit/0789ee5))
### Bug Fixes:
* **form:** prevent actionless submission (#1931) ([1fc74d4](https://github.com/aurelia/aurelia/commit/1fc74d4))
### Refactorings:
* **attr:** treat empty string as no binding (#1930) ([8fc5275](https://github.com/aurelia/aurelia/commit/8fc5275))
<a name="2.0.0-beta.13"></a>

@@ -8,0 +25,0 @@ # 2.0.0-beta.13 (2024-03-15)

3

dist/types/index.d.ts
import { IContainer } from '@aurelia/kernel';
import { Aurelia as $Aurelia, IPlatform, IAppRoot, CustomElementType, ICustomElementViewModel } from '@aurelia/runtime-html';
import { Aurelia as $Aurelia, IPlatform, CustomElementType, ICustomElementViewModel } from '@aurelia/runtime-html';
import { BrowserPlatform } from '@aurelia/platform-browser';

@@ -9,3 +9,2 @@ import type { ISinglePageAppConfig, IEnhancementConfig } from '@aurelia/runtime-html';

constructor(container?: IContainer);
static start(root: IAppRoot | undefined): void | Promise<void>;
static app(config: ISinglePageAppConfig<object> | CustomElementType): Omit<Aurelia, 'register' | 'app' | 'enhance'>;

@@ -12,0 +11,0 @@ static enhance<T extends ICustomElementViewModel>(config: IEnhancementConfig<T>): ReturnType<$Aurelia['enhance']>;

{
"name": "aurelia",
"version": "2.0.0-beta.13",
"version": "2.0.0-beta.14",
"main": "dist/cjs/index.cjs",

@@ -24,3 +24,4 @@ "module": "dist/esm/index.mjs",

"type": "git",
"url": "https://github.com/aurelia/aurelia"
"url": "https://github.com/aurelia/aurelia.git",
"directory": "packages/aurelia"
},

@@ -56,12 +57,12 @@ "bugs": {

"dependencies": {
"@aurelia/fetch-client": "2.0.0-beta.13",
"@aurelia/kernel": "2.0.0-beta.13",
"@aurelia/metadata": "2.0.0-beta.13",
"@aurelia/platform": "2.0.0-beta.13",
"@aurelia/platform-browser": "2.0.0-beta.13",
"@aurelia/runtime": "2.0.0-beta.13",
"@aurelia/runtime-html": "2.0.0-beta.13"
"@aurelia/fetch-client": "2.0.0-beta.14",
"@aurelia/kernel": "2.0.0-beta.14",
"@aurelia/metadata": "2.0.0-beta.14",
"@aurelia/platform": "2.0.0-beta.14",
"@aurelia/platform-browser": "2.0.0-beta.14",
"@aurelia/runtime": "2.0.0-beta.14",
"@aurelia/runtime-html": "2.0.0-beta.14"
},
"devDependencies": {
"typescript": "5.2.2"
"typescript": "5.4.2"
},

@@ -71,2 +72,2 @@ "engines": {

}
}
}
import { DI, IContainer, Registration } from '@aurelia/kernel';
import { StandardConfiguration, Aurelia as $Aurelia, IPlatform, IAppRoot, CustomElementType, CustomElement, ICustomElementViewModel } from '@aurelia/runtime-html';
import { StandardConfiguration, Aurelia as $Aurelia, IPlatform, CustomElementType, CustomElement, ICustomElementViewModel } from '@aurelia/runtime-html';
import { BrowserPlatform } from '@aurelia/platform-browser';

@@ -22,6 +22,2 @@ import type { ISinglePageAppConfig, IEnhancementConfig } from '@aurelia/runtime-html';

public static start(root: IAppRoot | undefined): void | Promise<void> {
return new Aurelia().start(root);
}
public static app(config: ISinglePageAppConfig<object> | CustomElementType): Omit<Aurelia, 'register' | 'app' | 'enhance'> {

@@ -360,11 +356,3 @@ return new Aurelia().app(config);

// IfRegistration,
// ElseRegistration,
// RepeatRegistration,
// ReplaceableRegistration,
// WithRegistration,
// DefaultResources as RuntimeDefaultResources,
// IObserverLocatorRegistration,
// IRendererRegistration,
// RuntimeConfiguration,

@@ -502,23 +490,3 @@

// IfRegistration,
// ElseRegistration,
// RepeatRegistration,
// ReplaceableRegistration,
// WithRegistration,
// SanitizeValueConverterRegistration,
// DebounceBindingBehaviorRegistration,
// OneTimeBindingBehaviorRegistration,
// ToViewBindingBehaviorRegistration,
// FromViewBindingBehaviorRegistration,
// SignalBindingBehaviorRegistration,
// ThrottleBindingBehaviorRegistration,
// TwoWayBindingBehaviorRegistration,
// CallBindingRendererRegistration,
// DefaultResources as RuntimeDefaultResources,
// IObserverLocatorRegistration,
// IRendererRegistration,
// RuntimeConfiguration,

@@ -662,7 +630,2 @@

// IProjectorLocatorRegistration,
// ITargetAccessorLocatorRegistration,
// ITargetObserverLocatorRegistration,
// ITemplateFactoryRegistration,
// DefaultComponents as RuntimeHtmlDefaultComponents,

@@ -727,28 +690,8 @@

// IExpressionParserRegistration,
// DefaultComponents as JitDefaultComponents,
// RefAttributePatternRegistration,
// DotSeparatedAttributePatternRegistration,
// DefaultBindingSyntax,
// AtPrefixedTriggerAttributePatternRegistration,
// ColonPrefixedBindAttributePatternRegistration,
ShortHandBindingSyntax,
// CallBindingCommandRegistration,
// DefaultBindingCommandRegistration,
// ForBindingCommandRegistration,
// FromViewBindingCommandRegistration,
// OneTimeBindingCommandRegistration,
// ToViewBindingCommandRegistration,
// TwoWayBindingCommandRegistration,
// SelfBindingBehaviorRegistration,
// UpdateTriggerBindingBehaviorRegistration,
// ComposeRegistration,
// DefaultResources as RuntimeHtmlDefaultResources,

@@ -809,4 +752,2 @@

// ITemplateCompilerRegistration,
// ITemplateElementFactoryRegistration,
// IAttrSyntaxTransformerRegistation,

@@ -816,9 +757,2 @@

// TriggerBindingCommandRegistration,
// DelegateBindingCommandRegistration,
// CaptureBindingCommandRegistration,
// AttrBindingCommandRegistration,
// ClassBindingCommandRegistration,
// StyleBindingCommandRegistration,
// DefaultBindingLanguage as JitHtmlDefaultBindingLanguage,

@@ -825,0 +759,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc