ember-source 4.6.0-beta.2 → 4.7.0-alpha.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.
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "4.6.0-beta.2",
2
+ "version": "4.7.0-alpha.3",
3
3
  "buildType": "tag",
4
- "SHA": "1dba5b0da1b8e8a5757610768833531e43f8eef7",
5
- "assetPath": "/tag/shas/1dba5b0da1b8e8a5757610768833531e43f8eef7.tgz"
4
+ "SHA": "f8f2d7a00060058f546c8d185ab4dcfb81a934db",
5
+ "assetPath": "/tag/shas/f8f2d7a00060058f546c8d185ab4dcfb81a934db.tgz"
6
6
  }
@@ -6,7 +6,7 @@
6
6
  * Portions Copyright 2008-2011 Apple Inc. All rights reserved.
7
7
  * @license Licensed under MIT license
8
8
  * See https://raw.github.com/emberjs/ember.js/master/LICENSE
9
- * @version 4.6.0-beta.2
9
+ * @version 4.7.0-alpha.3
10
10
  */
11
11
 
12
12
  /* eslint-disable no-var */
@@ -112,7 +112,7 @@ define("@ember/-internals/browser-environment/index", ["exports"], function (_ex
112
112
  Object.defineProperty(_exports, "__esModule", {
113
113
  value: true
114
114
  });
115
- _exports.window = _exports.userAgent = _exports.location = _exports.isIE = _exports.isFirefox = _exports.isChrome = _exports.history = _exports.hasDOM = void 0;
115
+ _exports.window = _exports.userAgent = _exports.location = _exports.isFirefox = _exports.isChrome = _exports.history = _exports.hasDOM = void 0;
116
116
  // check if window exists and actually is the global
117
117
  var hasDom = typeof self === 'object' && self !== null && self.Object === Object && typeof Window !== 'undefined' && self.constructor === Window && typeof document === 'object' && document !== null && self.document === document && typeof location === 'object' && location !== null && self.location === location && typeof history === 'object' && history !== null && self.history === history && typeof navigator === 'object' && navigator !== null && self.navigator === navigator && typeof navigator.userAgent === 'string';
118
118
  _exports.hasDOM = hasDom;
@@ -126,10 +126,8 @@ define("@ember/-internals/browser-environment/index", ["exports"], function (_ex
126
126
  _exports.userAgent = userAgent;
127
127
  var isChrome = hasDom ? typeof chrome === 'object' && !(typeof opera === 'object') : false;
128
128
  _exports.isChrome = isChrome;
129
- var isFirefox = hasDom ? typeof InstallTrigger !== 'undefined' : false;
129
+ var isFirefox = hasDom ? /Firefox|FxiOS/.test(userAgent) : false;
130
130
  _exports.isFirefox = isFirefox;
131
- var isIE = hasDom ? typeof MSInputMethodContext !== 'undefined' && typeof documentMode !== 'undefined' : false;
132
- _exports.isIE = isIE;
133
131
  });
134
132
  define("@ember/-internals/environment/index", ["exports"], function (_exports) {
135
133
  "use strict";
@@ -1313,8 +1311,8 @@ define("@ember/canary-features/index", ["exports", "@ember/-internals/environmen
1313
1311
  @public
1314
1312
  */
1315
1313
  var DEFAULT_FEATURES = {
1316
- EMBER_LIBRARIES_ISREGISTERED: false,
1317
- EMBER_IMPROVED_INSTRUMENTATION: false,
1314
+ EMBER_LIBRARIES_ISREGISTERED: null,
1315
+ EMBER_IMPROVED_INSTRUMENTATION: null,
1318
1316
  EMBER_UNIQUE_ID_HELPER: true,
1319
1317
  EMBER_DEFAULT_HELPER_MANAGER: true
1320
1318
  };
@@ -18739,7 +18737,7 @@ define("ember/version", ["exports"], function (_exports) {
18739
18737
  value: true
18740
18738
  });
18741
18739
  _exports.default = void 0;
18742
- var _default = "4.6.0-beta.2";
18740
+ var _default = "4.7.0-alpha.3";
18743
18741
  _exports.default = _default;
18744
18742
  });
18745
18743
  define("simple-html-tokenizer", ["exports"], function (_exports) {