Comparing version 2.0.1-dev.202303301732 to 2.0.1-dev.202304151358
@@ -6,2 +6,19 @@ # Change Log | ||
<a name="2.0.0-beta.4"></a> | ||
# 2.0.0-beta.4 (2023-04-13) | ||
### Features: | ||
* **slotted:** add slotted decorator, slotchange bindable for au-slot (#1735) ([8cf87af](https://github.com/aurelia/aurelia/commit/8cf87af)) | ||
### Refactorings: | ||
* **children:** make children observation a binding (#1732) ([5bde983](https://github.com/aurelia/aurelia/commit/5bde983)) | ||
* **children:** make children deco as a hook ([5bde983](https://github.com/aurelia/aurelia/commit/5bde983)) | ||
* **children:** remove children observers from custom element def ([5bde983](https://github.com/aurelia/aurelia/commit/5bde983)) | ||
* **children:** cleanup children observer related code, rename to binding ([5bde983](https://github.com/aurelia/aurelia/commit/5bde983)) | ||
* **observers:** remove intermediate vars ([5bde983](https://github.com/aurelia/aurelia/commit/5bde983)) | ||
* ***:** ignore dev message coverage ([5bde983](https://github.com/aurelia/aurelia/commit/5bde983)) | ||
<a name="2.0.0-beta.3"></a> | ||
@@ -8,0 +25,0 @@ # 2.0.0-beta.3 (2023-03-24) |
@@ -21,3 +21,3 @@ import { IContainer } from '@aurelia/kernel'; | ||
export { CollectionKind, batch, ComputedObserver, IObserverLocator, ISignaler, subscriberCollection, type BindingBehaviorInstance, observable, type ValueConverterInstance, type IndexMap, } from '@aurelia/runtime'; | ||
export { customAttribute, CustomAttribute, templateController, containerless, customElement, CustomElement, strict, capture, useShadowDOM, AppTask, BindingMode, bindable, type PartialBindableDefinition, Bindable, coercer, children, Controller, ViewFactory, IAppRoot, INode, IEventTarget, IRenderLocation, type ICustomAttributeViewModel, type ICustomElementViewModel, IFlushQueue, FlushQueue, IFlushable, renderer, IAurelia, NodeObserverLocator, IAuSlotsInfo, AuSlotsInfo, 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, ILifecycleHooks, type LifecycleHook, LifecycleHooks, lifecycleHooks, } from '@aurelia/runtime-html'; | ||
export { customAttribute, CustomAttribute, templateController, containerless, customElement, CustomElement, strict, capture, useShadowDOM, AppTask, BindingMode, bindable, type PartialBindableDefinition, Bindable, coercer, PartialChildrenDefinition, children, Controller, ViewFactory, IAppRoot, INode, IEventTarget, IRenderLocation, type ICustomAttributeViewModel, type ICustomElementViewModel, IFlushQueue, FlushQueue, IFlushable, renderer, IAurelia, NodeObserverLocator, 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, ILifecycleHooks, type LifecycleHook, LifecycleHooks, lifecycleHooks, } from '@aurelia/runtime-html'; | ||
//# sourceMappingURL=index.d.ts.map |
{ | ||
"name": "aurelia", | ||
"version": "2.0.1-dev.202303301732", | ||
"version": "2.0.1-dev.202304151358", | ||
"main": "dist/cjs/index.cjs", | ||
@@ -51,12 +51,12 @@ "module": "dist/esm/index.mjs", | ||
"dependencies": { | ||
"@aurelia/fetch-client": "2.0.1-dev.202303301732", | ||
"@aurelia/kernel": "2.0.1-dev.202303301732", | ||
"@aurelia/metadata": "2.0.1-dev.202303301732", | ||
"@aurelia/platform": "2.0.1-dev.202303301732", | ||
"@aurelia/platform-browser": "2.0.1-dev.202303301732", | ||
"@aurelia/runtime": "2.0.1-dev.202303301732", | ||
"@aurelia/runtime-html": "2.0.1-dev.202303301732" | ||
"@aurelia/fetch-client": "2.0.1-dev.202304151358", | ||
"@aurelia/kernel": "2.0.1-dev.202304151358", | ||
"@aurelia/metadata": "2.0.1-dev.202304151358", | ||
"@aurelia/platform": "2.0.1-dev.202304151358", | ||
"@aurelia/platform-browser": "2.0.1-dev.202304151358", | ||
"@aurelia/runtime": "2.0.1-dev.202304151358", | ||
"@aurelia/runtime-html": "2.0.1-dev.202304151358" | ||
}, | ||
"devDependencies": { | ||
"typescript": "4.9.5" | ||
"typescript": "5.0.2" | ||
}, | ||
@@ -63,0 +63,0 @@ "engines": { |
@@ -502,4 +502,3 @@ import { DI, IContainer, Registration } from '@aurelia/kernel'; | ||
// PartialChildrenDefinition, | ||
// ChildrenDefinition, | ||
PartialChildrenDefinition, | ||
// Children, | ||
@@ -676,4 +675,7 @@ children, | ||
// Compose, | ||
IAuSlot, | ||
IAuSlotsInfo, | ||
AuSlotsInfo, | ||
IAuSlotWatcher, | ||
slotted, | ||
@@ -688,3 +690,3 @@ // IProjectorLocatorRegistration, | ||
// CompiledTemplate, | ||
// ChildrenObserver, | ||
ChildrenBinding, | ||
// IRenderer, | ||
@@ -691,0 +693,0 @@ // IInstructionTypeClassifier, |
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
68806
1156
+ Added@aurelia/fetch-client@2.0.1-dev.202304151358(transitive)
+ Added@aurelia/kernel@2.0.1-dev.202304151358(transitive)
+ Added@aurelia/metadata@2.0.1-dev.202304151358(transitive)
+ Added@aurelia/platform@2.0.1-dev.202304151358(transitive)
+ Added@aurelia/platform-browser@2.0.1-dev.202304151358(transitive)
+ Added@aurelia/runtime@2.0.1-dev.202304151358(transitive)
+ Added@aurelia/runtime-html@2.0.1-dev.202304151358(transitive)
- Removed@aurelia/fetch-client@2.0.1-dev.202303301732(transitive)
- Removed@aurelia/kernel@2.0.1-dev.202303301732(transitive)
- Removed@aurelia/metadata@2.0.1-dev.202303301732(transitive)
- Removed@aurelia/platform@2.0.1-dev.202303301732(transitive)
- Removed@aurelia/platform-browser@2.0.1-dev.202303301732(transitive)
- Removed@aurelia/runtime@2.0.1-dev.202303301732(transitive)
- Removed@aurelia/runtime-html@2.0.1-dev.202303301732(transitive)