@angular/animations 15.1.0-next.0 → 15.1.0-next.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,5 +11,5 @@
11
11
  * Entry point for all public APIs of the animation package.
12
12
  */
13
13
  import { Version } from '@angular/core';
14
- export const VERSION = new Version('15.1.0-next.0');
14
+ export const VERSION = new Version('15.1.0-next.2');
15
15
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2FuaW1hdGlvbnMvc3JjL3ZlcnNpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7OztHQU1HO0FBRUg7Ozs7R0FJRztBQUNILE9BQU8sRUFBQyxPQUFPLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFdEMsTUFBTSxDQUFDLE1BQU0sT0FBTyxHQUFHLElBQUksT0FBTyxDQUFDLG1CQUFtQixDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEBsaWNlbnNlXG4gKiBDb3B5cmlnaHQgR29vZ2xlIExMQyBBbGwgUmlnaHRzIFJlc2VydmVkLlxuICpcbiAqIFVzZSBvZiB0aGlzIHNvdXJjZSBjb2RlIGlzIGdvdmVybmVkIGJ5IGFuIE1JVC1zdHlsZSBsaWNlbnNlIHRoYXQgY2FuIGJlXG4gKiBmb3VuZCBpbiB0aGUgTElDRU5TRSBmaWxlIGF0IGh0dHBzOi8vYW5ndWxhci5pby9saWNlbnNlXG4gKi9cblxuLyoqXG4gKiBAbW9kdWxlXG4gKiBAZGVzY3JpcHRpb25cbiAqIEVudHJ5IHBvaW50IGZvciBhbGwgcHVibGljIEFQSXMgb2YgdGhlIGFuaW1hdGlvbiBwYWNrYWdlLlxuICovXG5pbXBvcnQge1ZlcnNpb259IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5leHBvcnQgY29uc3QgVkVSU0lPTiA9IG5ldyBWZXJzaW9uKCcwLjAuMC1QTEFDRUhPTERFUicpO1xuIl19
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v15.1.0-next.0
2
+ * @license Angular v15.1.0-next.2
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v15.1.0-next.0
2
+ * @license Angular v15.1.0-next.2
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v15.1.0-next.0
2
+ * @license Angular v15.1.0-next.2
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -578,9 +578,9 @@ class NoopAnimationDriver {
578
578
  return new NoopAnimationPlayer(duration, delay);
579
579
  }
580
580
  }
581
- NoopAnimationDriver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-next.0", ngImport: i0, type: NoopAnimationDriver, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
582
- NoopAnimationDriver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-next.0", ngImport: i0, type: NoopAnimationDriver });
583
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-next.0", ngImport: i0, type: NoopAnimationDriver, decorators: [{
581
+ NoopAnimationDriver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-next.2", ngImport: i0, type: NoopAnimationDriver, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
582
+ NoopAnimationDriver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-next.2", ngImport: i0, type: NoopAnimationDriver });
583
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-next.2", ngImport: i0, type: NoopAnimationDriver, decorators: [{
584
584
  type: Injectable
585
585
  }] });
586
586
  /**
@@ -2807,6 +2807,9 @@ const NULL_REMOVED_QUERIED_STATE = {
2807
2807
  };
2808
2808
  const REMOVAL_FLAG = '__ng_removed';
2809
2809
  class StateValue {
2810
+ get params() {
2811
+ return this.options.params;
2812
+ }
2810
2813
  constructor(input, namespaceId = '') {
2811
2814
  this.namespaceId = namespaceId;
2812
2815
  const isObj = input && input.hasOwnProperty('value');
@@ -2824,9 +2827,6 @@ class StateValue {
2824
2827
  this.options.params = {};
2825
2828
  }
2826
2829
  }
2827
- get params() {
2828
- return this.options.params;
2829
- }
2830
2830
  absorbOptions(options) {
2831
2831
  const newParams = options.params;
2832
2832
  if (newParams) {
@@ -3197,6 +3197,10 @@ class AnimationTransitionNamespace {
3197
3197
  }
3198
3198
  }
3199
3199
  class TransitionAnimationEngine {
3200
+ /** @internal */
3201
+ _onRemovalComplete(element, context) {
3202
+ this.onRemovalComplete(element, context);
3203
+ }
3200
3204
  constructor(bodyNode, driver, _normalizer) {
3201
3205
  this.bodyNode = bodyNode;
3202
3206
  this.driver = driver;
@@ -3219,10 +3223,6 @@ class TransitionAnimationEngine {
3219
3223
  // this method is designed to be overridden by the code that uses this engine
3220
3224
  this.onRemovalComplete = (element, context) => { };
3221
3225
  }
3222
- /** @internal */
3223
- _onRemovalComplete(element, context) {
3224
- this.onRemovalComplete(element, context);
3225
- }
3226
3226
  get queuedPlayers() {
3227
3227
  const players = [];
3228
3228
  this._namespaceList.forEach(ns => {