ember-source 6.8.2 → 6.8.3

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.
@@ -5,7 +5,7 @@
5
5
  * Portions Copyright 2008-2011 Apple Inc. All rights reserved.
6
6
  * @license Licensed under MIT license
7
7
  * See https://raw.github.com/emberjs/ember.js/master/LICENSE
8
- * @version 6.8.2
8
+ * @version 6.8.3
9
9
  */
10
10
  /* eslint-disable no-var */
11
11
  /* globals global globalThis self */
@@ -5,7 +5,7 @@
5
5
  * Portions Copyright 2008-2011 Apple Inc. All rights reserved.
6
6
  * @license Licensed under MIT license
7
7
  * See https://raw.github.com/emberjs/ember.js/master/LICENSE
8
- * @version 6.8.2
8
+ * @version 6.8.3
9
9
  */
10
10
  /* eslint-disable no-var */
11
11
  /* globals global globalThis self */
@@ -2846,7 +2846,7 @@ var define, require;
2846
2846
  }, Symbol.toStringTag, { value: 'Module' });
2847
2847
 
2848
2848
  // this file gets replaced with the real value during the build
2849
- const Version = '6.8.2';
2849
+ const Version = '6.8.3';
2850
2850
 
2851
2851
  const emberVersion = /*#__PURE__*/Object.defineProperty({
2852
2852
  __proto__: null,
@@ -45681,6 +45681,39 @@ var define, require;
45681
45681
  default: ObjectProxy
45682
45682
  }, Symbol.toStringTag, { value: 'Module' });
45683
45683
 
45684
+ /**
45685
+ * The `@ember/reactive` package contains common reactive utilities
45686
+ * for tracking values and creating reactive data structures.
45687
+ *
45688
+ * @module @ember/reactive
45689
+ * @public
45690
+ */
45691
+
45692
+ // empty module (for now)
45693
+ const index$1 = {};
45694
+
45695
+ const emberReactiveIndex = /*#__PURE__*/Object.defineProperty({
45696
+ __proto__: null,
45697
+ default: index$1
45698
+ }, Symbol.toStringTag, { value: 'Module' });
45699
+
45700
+ /**
45701
+ * The `@ember/reactive/collections` module contains reactive data structures that fall under the "Collections" category.
45702
+ *
45703
+ * @module @ember/reactive/collections
45704
+ * @public
45705
+ */
45706
+
45707
+ const emberReactiveCollections = /*#__PURE__*/Object.defineProperty({
45708
+ __proto__: null,
45709
+ trackedArray,
45710
+ trackedMap,
45711
+ trackedObject,
45712
+ trackedSet,
45713
+ trackedWeakMap,
45714
+ trackedWeakSet
45715
+ }, Symbol.toStringTag, { value: 'Module' });
45716
+
45684
45717
  /**
45685
45718
  @module @ember/renderer
45686
45719
  @public
@@ -47801,6 +47834,8 @@ var define, require;
47801
47834
  d('@ember/object/promise-proxy-mixin', emberObjectPromiseProxyMixin);
47802
47835
  d('@ember/object/proxy', emberObjectProxy);
47803
47836
  d('@ember/owner/index', emberOwnerIndex);
47837
+ d('@ember/reactive/index', emberReactiveIndex);
47838
+ d('@ember/reactive/collections', emberReactiveCollections);
47804
47839
  d('@ember/renderer/index', emberRendererIndex);
47805
47840
  d('@ember/routing/-internals', emberRoutinginternals);
47806
47841
  d('@ember/routing/hash-location', emberRoutingHashLocation);