Comparing version 2.0.0-beta.14 to 2.0.0-beta.15
@@ -6,2 +6,11 @@ # Change Log | ||
<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 +17,0 @@ # 2.0.0-beta.14 (2024-04-03) |
@@ -15,7 +15,7 @@ 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 { 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, 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, ISignaler, } from '@aurelia/runtime-html'; | ||
//# sourceMappingURL=index.d.ts.map |
{ | ||
"name": "aurelia", | ||
"version": "2.0.0-beta.14", | ||
"version": "2.0.0-beta.15", | ||
"main": "dist/cjs/index.cjs", | ||
@@ -56,9 +56,10 @@ "module": "dist/esm/index.mjs", | ||
"dependencies": { | ||
"@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" | ||
"@aurelia/fetch-client": "2.0.0-beta.15", | ||
"@aurelia/kernel": "2.0.0-beta.15", | ||
"@aurelia/metadata": "2.0.0-beta.15", | ||
"@aurelia/expression-parser": "2.0.0-beta.15", | ||
"@aurelia/platform": "2.0.0-beta.15", | ||
"@aurelia/platform-browser": "2.0.0-beta.15", | ||
"@aurelia/runtime": "2.0.0-beta.15", | ||
"@aurelia/runtime-html": "2.0.0-beta.15" | ||
}, | ||
@@ -71,2 +72,2 @@ "devDependencies": { | ||
} | ||
} | ||
} |
119
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,16 @@ | ||
export { | ||
// BindingBehaviorDefinition, | ||
// PartialBindingBehaviorDefinition, | ||
// BindingBehaviorKind, | ||
// BindingBehaviorDecorator, | ||
// BindingBehaviorInstance, | ||
// BindingBehaviorType, | ||
type BindingBehaviorInstance, | ||
// ValueConverterDefinition, | ||
// PartialValueConverterDefinition, | ||
// ValueConverterKind, | ||
// ValueConverterDecorator, | ||
// ValueConverterType, | ||
type ValueConverterInstance, | ||
// BindingModeBehavior, | ||
@@ -781,2 +692,4 @@ // OneTimeBindingBehavior, | ||
type IModifiedEventHandler, | ||
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
79220
8
1064
+ Added@aurelia/expression-parser@2.0.0-beta.15(transitive)
+ Added@aurelia/fetch-client@2.0.0-beta.15(transitive)
+ Added@aurelia/kernel@2.0.0-beta.15(transitive)
+ Added@aurelia/metadata@2.0.0-beta.15(transitive)
+ Added@aurelia/platform@2.0.0-beta.15(transitive)
+ Added@aurelia/platform-browser@2.0.0-beta.15(transitive)
+ Added@aurelia/runtime@2.0.0-beta.15(transitive)
+ Added@aurelia/runtime-html@2.0.0-beta.15(transitive)
- Removed@aurelia/fetch-client@2.0.0-beta.14(transitive)
- Removed@aurelia/kernel@2.0.0-beta.14(transitive)
- Removed@aurelia/metadata@2.0.0-beta.14(transitive)
- Removed@aurelia/platform@2.0.0-beta.14(transitive)
- Removed@aurelia/platform-browser@2.0.0-beta.14(transitive)
- Removed@aurelia/runtime@2.0.0-beta.14(transitive)
- Removed@aurelia/runtime-html@2.0.0-beta.14(transitive)