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 */
@@ -2116,7 +2116,7 @@ var define, require;
2116
2116
  }, Symbol.toStringTag, { value: 'Module' });
2117
2117
 
2118
2118
  // this file gets replaced with the real value during the build
2119
- const Version = '6.8.2';
2119
+ const Version = '6.8.3';
2120
2120
 
2121
2121
  const emberVersion = /*#__PURE__*/Object.defineProperty({
2122
2122
  __proto__: null,
@@ -43149,6 +43149,39 @@ var define, require;
43149
43149
  default: ObjectProxy
43150
43150
  }, Symbol.toStringTag, { value: 'Module' });
43151
43151
 
43152
+ /**
43153
+ * The `@ember/reactive` package contains common reactive utilities
43154
+ * for tracking values and creating reactive data structures.
43155
+ *
43156
+ * @module @ember/reactive
43157
+ * @public
43158
+ */
43159
+
43160
+ // empty module (for now)
43161
+ const index$1 = {};
43162
+
43163
+ const emberReactiveIndex = /*#__PURE__*/Object.defineProperty({
43164
+ __proto__: null,
43165
+ default: index$1
43166
+ }, Symbol.toStringTag, { value: 'Module' });
43167
+
43168
+ /**
43169
+ * The `@ember/reactive/collections` module contains reactive data structures that fall under the "Collections" category.
43170
+ *
43171
+ * @module @ember/reactive/collections
43172
+ * @public
43173
+ */
43174
+
43175
+ const emberReactiveCollections = /*#__PURE__*/Object.defineProperty({
43176
+ __proto__: null,
43177
+ trackedArray,
43178
+ trackedMap,
43179
+ trackedObject,
43180
+ trackedSet,
43181
+ trackedWeakMap,
43182
+ trackedWeakSet
43183
+ }, Symbol.toStringTag, { value: 'Module' });
43184
+
43152
43185
  /**
43153
43186
  @module @ember/renderer
43154
43187
  @public
@@ -45069,6 +45102,8 @@ var define, require;
45069
45102
  d('@ember/object/promise-proxy-mixin', emberObjectPromiseProxyMixin);
45070
45103
  d('@ember/object/proxy', emberObjectProxy);
45071
45104
  d('@ember/owner/index', emberOwnerIndex);
45105
+ d('@ember/reactive/index', emberReactiveIndex);
45106
+ d('@ember/reactive/collections', emberReactiveCollections);
45072
45107
  d('@ember/renderer/index', emberRendererIndex);
45073
45108
  d('@ember/routing/-internals', emberRoutinginternals);
45074
45109
  d('@ember/routing/hash-location', emberRoutingHashLocation);