Comparing version 2.0.1-dev.202401261010 to 2.0.1-dev.202402130428
@@ -6,2 +6,20 @@ # Change Log | ||
<a name="2.0.0-beta.11"></a> | ||
# 2.0.0-beta.11 (2024-02-13) | ||
### Features: | ||
* **event:** ability to add modifier (#1891) ([67a3c22](https://github.com/aurelia/aurelia/commit/67a3c22)) | ||
* **state:** support redux devtools for the state plugin (#1888) ([bd07160](https://github.com/aurelia/aurelia/commit/bd07160)) | ||
### Bug Fixes: | ||
* ***:** upgrade rollup, tweak build scripts ([bd07160](https://github.com/aurelia/aurelia/commit/bd07160)) | ||
### Refactorings: | ||
* **fetch-client:** cleanup, add tests, tweak doc & prepare cache interceptor (#1756) ([a931dac](https://github.com/aurelia/aurelia/commit/a931dac)) | ||
<a name="2.0.0-beta.10"></a> | ||
@@ -8,0 +26,0 @@ # 2.0.0-beta.10 (2024-01-26) |
@@ -16,3 +16,3 @@ import { IContainer } from '@aurelia/kernel'; | ||
export default Aurelia; | ||
export { type Interceptor, json, HttpClientConfiguration, HttpClient, IHttpClient, } from '@aurelia/fetch-client'; | ||
export { type IFetchInterceptor, IFetchFn, json, HttpClientConfiguration, HttpClient, IHttpClient, } from '@aurelia/fetch-client'; | ||
export { Metadata, } from '@aurelia/metadata'; | ||
@@ -22,3 +22,3 @@ export { type ITask, Platform, type QueueTaskOptions, Task, TaskAbortError, TaskQueue, type TaskStatus } from '@aurelia/platform'; | ||
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, 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'; | ||
export { customAttribute, CustomAttribute, templateController, containerless, customElement, CustomElement, 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, processContent, ILifecycleHooks, type LifecycleHook, LifecycleHooks, lifecycleHooks, watch, IKeyMapping, IModifiedEventHandlerCreator, IEventModifier, type IModifiedEventHandler, } from '@aurelia/runtime-html'; | ||
//# sourceMappingURL=index.d.ts.map |
{ | ||
"name": "aurelia", | ||
"version": "2.0.1-dev.202401261010", | ||
"version": "2.0.1-dev.202402130428", | ||
"main": "dist/cjs/index.cjs", | ||
@@ -55,9 +55,9 @@ "module": "dist/esm/index.mjs", | ||
"dependencies": { | ||
"@aurelia/fetch-client": "2.0.1-dev.202401261010", | ||
"@aurelia/kernel": "2.0.1-dev.202401261010", | ||
"@aurelia/metadata": "2.0.1-dev.202401261010", | ||
"@aurelia/platform": "2.0.1-dev.202401261010", | ||
"@aurelia/platform-browser": "2.0.1-dev.202401261010", | ||
"@aurelia/runtime": "2.0.1-dev.202401261010", | ||
"@aurelia/runtime-html": "2.0.1-dev.202401261010" | ||
"@aurelia/fetch-client": "2.0.1-dev.202402130428", | ||
"@aurelia/kernel": "2.0.1-dev.202402130428", | ||
"@aurelia/metadata": "2.0.1-dev.202402130428", | ||
"@aurelia/platform": "2.0.1-dev.202402130428", | ||
"@aurelia/platform-browser": "2.0.1-dev.202402130428", | ||
"@aurelia/runtime": "2.0.1-dev.202402130428", | ||
"@aurelia/runtime-html": "2.0.1-dev.202402130428" | ||
}, | ||
@@ -64,0 +64,0 @@ "devDependencies": { |
@@ -61,3 +61,4 @@ import { DI, IContainer, Registration } from '@aurelia/kernel'; | ||
export { | ||
type Interceptor, | ||
type IFetchInterceptor, | ||
IFetchFn, | ||
// RetryConfiguration, | ||
@@ -806,2 +807,3 @@ // RetryableRequest, | ||
shadowCSS, | ||
processContent, | ||
@@ -850,2 +852,9 @@ // AdoptedStyleSheetsStyles, | ||
lifecycleHooks, | ||
watch, | ||
IKeyMapping, | ||
IModifiedEventHandlerCreator, | ||
IEventModifier, | ||
type IModifiedEventHandler, | ||
} 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
81198
1231
+ Added@aurelia/fetch-client@2.0.1-dev.202402130428(transitive)
+ Added@aurelia/kernel@2.0.1-dev.202402130428(transitive)
+ Added@aurelia/metadata@2.0.1-dev.202402130428(transitive)
+ Added@aurelia/platform@2.0.1-dev.202402130428(transitive)
+ Added@aurelia/platform-browser@2.0.1-dev.202402130428(transitive)
+ Added@aurelia/runtime@2.0.1-dev.202402130428(transitive)
+ Added@aurelia/runtime-html@2.0.1-dev.202402130428(transitive)
- Removed@aurelia/fetch-client@2.0.1-dev.202401261010(transitive)
- Removed@aurelia/kernel@2.0.1-dev.202401261010(transitive)
- Removed@aurelia/metadata@2.0.1-dev.202401261010(transitive)
- Removed@aurelia/platform@2.0.1-dev.202401261010(transitive)
- Removed@aurelia/platform-browser@2.0.1-dev.202401261010(transitive)
- Removed@aurelia/runtime@2.0.1-dev.202401261010(transitive)
- Removed@aurelia/runtime-html@2.0.1-dev.202401261010(transitive)