Comparing version 2.1.0-dev.202404150648 to 2.1.0-dev.202405060015
@@ -6,2 +6,20 @@ # Change Log | ||
<a name="2.0.0-beta.16"></a> | ||
# 2.0.0-beta.16 (2024-05-03) | ||
### Refactorings: | ||
* ***:** extract template compiler into own package (#1954) ([ad7ae1e](https://github.com/aurelia/aurelia/commit/ad7ae1e)) | ||
* ***:** cleanup deco code (#1947) ([ca22bc8](https://github.com/aurelia/aurelia/commit/ca22bc8)) | ||
* **observers:** use static blocks, group related code ([ca22bc8](https://github.com/aurelia/aurelia/commit/ca22bc8)) | ||
<a name="2.0.0-beta.15"></a> | ||
# 2.0.0-beta.15 (2024-04-17) | ||
### Refactorings: | ||
* **bindings:** move binding infra to runtime html (#1944) ([1c7608a](https://github.com/aurelia/aurelia/commit/1c7608a)) | ||
* **expression-parser:** move exp parser to its own package (#1943) ([6e7dcad](https://github.com/aurelia/aurelia/commit/6e7dcad)) | ||
* ***:** migration to TC39 decorators + metadata simplification (#1932) ([22f90ad](https://github.com/aurelia/aurelia/commit/22f90ad)) | ||
<a name="2.0.0-beta.14"></a> | ||
@@ -8,0 +26,0 @@ # 2.0.0-beta.14 (2024-04-03) |
@@ -15,7 +15,8 @@ import { IContainer } from '@aurelia/kernel'; | ||
export default Aurelia; | ||
export { Metadata, } from '@aurelia/metadata'; | ||
export { type ITask, Platform, type QueueTaskOptions, Task, TaskAbortError, TaskQueue, type TaskStatus } from '@aurelia/platform'; | ||
export { all, DI, IContainer, type IFactory, inject, resolve, type IRegistration, type IRegistry, type IResolver, IServiceLocator, type Key, lazy, factory, newInstanceOf, newInstanceForScope, optional, resource, allResources, ignore, Registration, singleton, transient, InstanceProvider, type Resolved, type Class, type Constructable, type ConstructableClass, type IDisposable, type IIndexable, type ColorOptions, ILogger, ConsoleSink, LoggerConfiguration, emptyArray, emptyObject, noop, LogLevel, EventAggregator, IEventAggregator, isArrayIndex, camelCase, kebabCase, pascalCase, toArray, bound, } from '@aurelia/kernel'; | ||
export { type CollectionKind, batch, ComputedObserver, IObserverLocator, ISignaler, subscriberCollection, type BindingBehaviorInstance, observable, type ValueConverterInstance, type IndexMap, } from '@aurelia/runtime'; | ||
export { customAttribute, CustomAttribute, templateController, containerless, customElement, CustomElement, capture, useShadowDOM, AppTask, BindingMode, bindable, type PartialBindableDefinition, Bindable, coercer, type PartialChildrenDefinition, children, Controller, ViewFactory, type ISinglePageAppConfig, IAppRoot, INode, IEventTarget, IRenderLocation, type ICustomAttributeViewModel, type ICustomElementViewModel, IController, IViewFactory, IFlushQueue, FlushQueue, type IFlushable, renderer, IAurelia, NodeObserverLocator, type IAuSlot, IAuSlotsInfo, AuSlotsInfo, IAuSlotWatcher, slotted, ChildrenBinding, ITemplateCompiler, ITemplateCompilerHooks, TemplateCompilerHooks, templateCompilerHooks, attributePattern, IAttributePattern, IAttrMapper, alias, registerAliases, bindingBehavior, BindingBehavior, valueConverter, ValueConverter, bindingCommand, type BindingCommandInstance, type IEnhancementConfig, type IHydratedParentController, ShortHandBindingSyntax, StyleConfiguration, type IShadowDOMConfiguration, cssModules, shadowCSS, processContent, ILifecycleHooks, type LifecycleHook, LifecycleHooks, lifecycleHooks, watch, IKeyMapping, IModifiedEventHandlerCreator, IEventModifier, type IModifiedEventHandler, } from '@aurelia/runtime-html'; | ||
export { IExpressionParser, CustomExpression, } from '@aurelia/expression-parser'; | ||
export { type CollectionKind, batch, ComputedObserver, IObserverLocator, subscriberCollection, observable, type IndexMap, } from '@aurelia/runtime'; | ||
export { attributePattern, AttributePattern, IAttrMapper, IAttributeParser, IAttributePattern, bindingCommand, BindingCommand, type BindingCommandInstance, ITemplateCompiler, ITemplateElementFactory, ITemplateCompilerHooks, TemplateCompilerHooks, templateCompilerHooks, type BindingCommandStaticAuDefinition, } from '@aurelia/template-compiler'; | ||
export { type BindingBehaviorInstance, type ValueConverterInstance, customAttribute, CustomAttribute, templateController, containerless, customElement, CustomElement, capture, useShadowDOM, AppTask, BindingMode, bindable, type PartialBindableDefinition, Bindable, coercer, type PartialChildrenDefinition, children, Controller, ViewFactory, type ISinglePageAppConfig, IAppRoot, INode, IEventTarget, IRenderLocation, type ICustomAttributeViewModel, type ICustomElementViewModel, IController, IViewFactory, IFlushQueue, FlushQueue, type IFlushable, renderer, IAurelia, NodeObserverLocator, type IAuSlot, IAuSlotsInfo, AuSlotsInfo, IAuSlotWatcher, slotted, ChildrenBinding, RuntimeTemplateCompilerImplementation, alias, registerAliases, bindingBehavior, BindingBehavior, valueConverter, ValueConverter, type IEnhancementConfig, type IHydratedParentController, ShortHandBindingSyntax, StyleConfiguration, type IShadowDOMConfiguration, cssModules, shadowCSS, processContent, ILifecycleHooks, type LifecycleHook, LifecycleHooks, lifecycleHooks, watch, IKeyMapping, IModifiedEventHandlerCreator, IEventModifier, type IModifiedEventHandler, Scope, ISignaler, } from '@aurelia/runtime-html'; | ||
//# sourceMappingURL=index.d.ts.map |
{ | ||
"name": "aurelia", | ||
"version": "2.1.0-dev.202404150648", | ||
"version": "2.1.0-dev.202405060015", | ||
"main": "dist/cjs/index.cjs", | ||
@@ -56,9 +56,11 @@ "module": "dist/esm/index.mjs", | ||
"dependencies": { | ||
"@aurelia/fetch-client": "2.1.0-dev.202404150648", | ||
"@aurelia/kernel": "2.1.0-dev.202404150648", | ||
"@aurelia/metadata": "2.1.0-dev.202404150648", | ||
"@aurelia/platform": "2.1.0-dev.202404150648", | ||
"@aurelia/platform-browser": "2.1.0-dev.202404150648", | ||
"@aurelia/runtime": "2.1.0-dev.202404150648", | ||
"@aurelia/runtime-html": "2.1.0-dev.202404150648" | ||
"@aurelia/fetch-client": "2.1.0-dev.202405060015", | ||
"@aurelia/kernel": "2.1.0-dev.202405060015", | ||
"@aurelia/metadata": "2.1.0-dev.202405060015", | ||
"@aurelia/expression-parser": "2.1.0-dev.202405060015", | ||
"@aurelia/platform": "2.1.0-dev.202405060015", | ||
"@aurelia/platform-browser": "2.1.0-dev.202405060015", | ||
"@aurelia/runtime": "2.1.0-dev.202405060015", | ||
"@aurelia/template-compiler": "2.1.0-dev.202405060015", | ||
"@aurelia/runtime-html": "2.1.0-dev.202405060015" | ||
}, | ||
@@ -65,0 +67,0 @@ "devDependencies": { |
182
src/index.ts
@@ -57,10 +57,2 @@ import { DI, IContainer, Registration } from '@aurelia/kernel'; | ||
export { | ||
Metadata, | ||
// isNullOrUndefined, | ||
// isObject, | ||
// metadata, | ||
// applyMetadataPolyfill, | ||
} from '@aurelia/metadata'; | ||
export { | ||
type ITask, | ||
@@ -192,5 +184,9 @@ Platform, | ||
export { | ||
IExpressionParser, | ||
CustomExpression, | ||
} from '@aurelia/expression-parser'; | ||
export { | ||
type CollectionKind, | ||
batch, | ||
// CallFunctionExpression, | ||
// connects, | ||
@@ -209,42 +205,3 @@ // observes, | ||
// isPureLiteral, | ||
// CustomExpression, | ||
// BindingBehaviorExpression, | ||
// ValueConverterExpression, | ||
// AssignExpression, | ||
// ConditionalExpression, | ||
// AccessThisExpression, | ||
// AccessScopeExpression, | ||
// AccessMemberExpression, | ||
// AccessKeyedExpression, | ||
// CallScopeExpression, | ||
// CallMemberExpression, | ||
// BinaryExpression, | ||
// UnaryExpression, | ||
// PrimitiveLiteralExpression, | ||
// ArrayLiteralExpression, | ||
// ObjectLiteralExpression, | ||
// TemplateExpression, | ||
// TaggedTemplateExpression, | ||
// ArrayBindingPattern, | ||
// ObjectBindingPattern, | ||
// BindingIdentifier, | ||
// ForOfStatement, | ||
// Interpolation, | ||
// AnyBindingExpression, | ||
// IsPrimary, | ||
// IsLiteral, | ||
// IsLeftHandSide, | ||
// IsUnary, | ||
// IsBinary, | ||
// IsConditional, | ||
// IsAssign, | ||
// IsValueConverter, | ||
// IsBindingBehavior, | ||
// IsAssignable, | ||
// IsExpression, | ||
// IsExpressionOrStatement, | ||
// Connects, | ||
// Observes, | ||
// CallsFunction, | ||
// IsResource, | ||
@@ -254,30 +211,2 @@ // HasBind, | ||
// HasAncestor, | ||
// IVisitor, | ||
// IExpression, | ||
// IAccessKeyedExpression, | ||
// IAccessMemberExpression, | ||
// IAccessScopeExpression, | ||
// IAccessThisExpression, | ||
// IArrayBindingPattern, | ||
// IArrayLiteralExpression, | ||
// IAssignExpression, | ||
// IBinaryExpression, | ||
// IBindingBehaviorExpression, | ||
// IBindingIdentifier, | ||
// ICallFunctionExpression, | ||
// ICallMemberExpression, | ||
// ICallScopeExpression, | ||
// IConditionalExpression, | ||
// ForOfStatement, | ||
// Interpolation, | ||
// IObjectBindingPattern, | ||
// IObjectLiteralExpression, | ||
// IPrimitiveLiteralExpression, | ||
// ITaggedTemplateExpression, | ||
// ITemplateExpression, | ||
// IUnaryExpression, | ||
// IValueConverterExpression, | ||
// BinaryOperator, | ||
// BindingIdentifierOrPattern, | ||
// UnaryOperator, | ||
@@ -288,5 +217,2 @@ // IObserverLocatorBasedConnectable, | ||
// IExpressionParser, | ||
// ExpressionType, | ||
// ArrayObserver, | ||
@@ -330,21 +256,4 @@ // enableArrayObservation, | ||
ISignaler, | ||
subscriberCollection, | ||
type BindingBehaviorInstance, | ||
// PartialBindingBehaviorDefinition, | ||
// BindingBehaviorKind, | ||
// BindingBehaviorDecorator, | ||
// BindingBehaviorInstance, | ||
// BindingBehaviorType, | ||
// BindingModeBehavior, | ||
// OneTimeBindingBehavior, | ||
// ToViewBindingBehavior, | ||
// FromViewBindingBehavior, | ||
// TwoWayBindingBehavior, | ||
// DebounceBindingBehavior, | ||
// SignalableBinding, | ||
@@ -396,8 +305,2 @@ // SignalBindingBehavior, | ||
// ValueConverterDefinition, | ||
// PartialValueConverterDefinition, | ||
// ValueConverterKind, | ||
// ValueConverterDecorator, | ||
type ValueConverterInstance, | ||
// ValueConverterType, | ||
type IndexMap, | ||
@@ -408,8 +311,37 @@ | ||
export { | ||
attributePattern, | ||
AttributePattern, | ||
IAttrMapper, | ||
IAttributeParser, | ||
IAttributePattern, | ||
bindingCommand, | ||
BindingCommand, | ||
type BindingCommandInstance, | ||
ITemplateCompiler, | ||
ITemplateElementFactory, | ||
ITemplateCompilerHooks, | ||
TemplateCompilerHooks, | ||
templateCompilerHooks, | ||
type BindingCommandStaticAuDefinition, | ||
} from '@aurelia/template-compiler'; | ||
export { | ||
// BindingBehaviorDefinition, | ||
// PartialBindingBehaviorDefinition, | ||
// BindingBehaviorKind, | ||
// BindingBehaviorDecorator, | ||
// BindingBehaviorInstance, | ||
// BindingBehaviorType, | ||
type BindingBehaviorInstance, | ||
// ValueConverterDefinition, | ||
// PartialValueConverterDefinition, | ||
// ValueConverterKind, | ||
// ValueConverterDecorator, | ||
// ValueConverterType, | ||
type ValueConverterInstance, | ||
// BindingModeBehavior, | ||
@@ -429,3 +361,2 @@ // OneTimeBindingBehavior, | ||
customAttribute, | ||
// CustomAttributeDecorator, | ||
CustomAttribute, | ||
@@ -643,8 +574,5 @@ // CustomAttributeDefinition | ||
// ITemplate, | ||
ITemplateCompiler, | ||
// ITemplateFactory, | ||
ITemplateCompilerHooks, | ||
TemplateCompilerHooks, | ||
templateCompilerHooks, | ||
RuntimeTemplateCompilerImplementation, | ||
// RenderContext | ||
@@ -656,10 +584,2 @@ | ||
attributePattern, | ||
// AttributePatternDefinition, | ||
IAttributePattern, | ||
// IAttributePatternHandler, | ||
// Interpretation, | ||
// ISyntaxInterpreter, | ||
IAttrMapper, | ||
// AtPrefixedTriggerAttributePattern, | ||
@@ -679,5 +599,2 @@ // ColonPrefixedBindAttributePattern, | ||
bindingCommand, | ||
// BindingCommand, | ||
type BindingCommandInstance, | ||
// BindingCommandDefinition, | ||
@@ -750,26 +667,4 @@ // BindingCommandKind, | ||
// IAttrSyntaxTransformer, | ||
// TriggerBindingCommand, | ||
// DelegateBindingCommand, | ||
// CaptureBindingCommand, | ||
// AttrBindingCommand, | ||
// ClassBindingCommand, | ||
// StyleBindingCommand, | ||
// IAttrSyntaxTransformerRegistation, | ||
// DefaultComponents as JitHtmlDefaultComponents, | ||
// DefaultBindingLanguage as JitHtmlDefaultBindingLanguage, | ||
// StandardConfiguration, | ||
// stringifyDOM, | ||
// stringifyInstructions, | ||
// stringifyTemplateDefinition, | ||
// TemplateBinder, | ||
// ITemplateElementFactory, | ||
ILifecycleHooks, | ||
@@ -786,2 +681,5 @@ type LifecycleHook, | ||
type IModifiedEventHandler, | ||
Scope, | ||
ISignaler, | ||
} from '@aurelia/runtime-html'; |
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
81303
9
1073
+ Added@aurelia/expression-parser@2.1.0-dev.202405060015(transitive)
+ Added@aurelia/fetch-client@2.1.0-dev.202405060015(transitive)
+ Added@aurelia/kernel@2.1.0-dev.202405060015(transitive)
+ Added@aurelia/metadata@2.1.0-dev.202405060015(transitive)
+ Added@aurelia/platform@2.1.0-dev.202405060015(transitive)
+ Added@aurelia/platform-browser@2.1.0-dev.202405060015(transitive)
+ Added@aurelia/runtime@2.1.0-dev.202405060015(transitive)
+ Added@aurelia/runtime-html@2.1.0-dev.202405060015(transitive)
+ Added@aurelia/template-compiler@2.1.0-dev.202405060015(transitive)
- Removed@aurelia/fetch-client@2.1.0-dev.202404150648(transitive)
- Removed@aurelia/kernel@2.1.0-dev.202404150648(transitive)
- Removed@aurelia/metadata@2.1.0-dev.202404150648(transitive)
- Removed@aurelia/platform@2.1.0-dev.202404150648(transitive)
- Removed@aurelia/platform-browser@2.1.0-dev.202404150648(transitive)
- Removed@aurelia/runtime@2.1.0-dev.202404150648(transitive)
- Removed@aurelia/runtime-html@2.1.0-dev.202404150648(transitive)