ember-source 3.5.0 → 3.5.1

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.
package/docs/data.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "name": "The Ember API",
4
4
  "description": "The Ember API: a framework for building ambitious web applications",
5
5
  "url": "https://emberjs.com/",
6
- "version": "3.5.0"
6
+ "version": "3.5.1"
7
7
  },
8
8
  "files": {
9
9
  "node_modules/rsvp/lib/rsvp/promise/all.js": {
@@ -10976,7 +10976,7 @@
10976
10976
  "file": "packages/ember-metal/lib/properties.ts",
10977
10977
  "line": 108,
10978
10978
  "description": "NOTE: This is a low-level method used by other parts of the API. You almost\nnever want to call this method directly. Instead you should use\n`mixin()` to define new properties.\n\nDefines a property on an object. This method works much like the ES5\n`Object.defineProperty()` method except that it can also accept computed\nproperties and other special descriptors.\n\nNormally this method takes only three parameters. However if you pass an\ninstance of `Descriptor` as the third param then you can pass an\noptional value as the fourth parameter. This is often more efficient than\ncreating new descriptor hashes for each property.\n\n## Examples\n\n```javascript\nimport { defineProperty, computed } from '@ember/object';\n\n// ES5 compatible mode\ndefineProperty(contact, 'firstName', {\n writable: true,\n configurable: false,\n enumerable: true,\n value: 'Charles'\n});\n\n// define a simple property\ndefineProperty(contact, 'lastName', undefined, 'Jolley');\n\n// define a computed property\ndefineProperty(contact, 'fullName', computed('firstName', 'lastName', function() {\n return this.firstName+' '+this.lastName;\n}));\n```",
10979
- "access": "private",
10979
+ "access": "public",
10980
10980
  "tagname": "",
10981
10981
  "itemtype": "method",
10982
10982
  "name": "defineProperty",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-source",
3
- "version": "3.5.0",
3
+ "version": "3.5.1",
4
4
  "description": "A JavaScript framework for creating ambitious web applications",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -95,7 +95,7 @@
95
95
  "babel-plugin-transform-es2015-template-literals": "^6.22.0",
96
96
  "babel-plugin-transform-object-assign": "^6.22.0",
97
97
  "babel-template": "^6.26.0",
98
- "backburner.js": "^2.3.0",
98
+ "backburner.js": "^2.4.1",
99
99
  "broccoli-babel-transpiler": "^6.1.4",
100
100
  "broccoli-concat": "^3.2.2",
101
101
  "broccoli-debug": "^0.6.4",
@@ -153,6 +153,6 @@
153
153
  "ember-addon": {
154
154
  "after": "ember-cli-legacy-blueprints"
155
155
  },
156
- "_originalVersion": "3.5.0",
156
+ "_originalVersion": "3.5.1",
157
157
  "_versionPreviouslyCalculated": true
158
158
  }