ember-source 3.5.0-beta.2 → 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-beta.2"
6
+ "version": "3.5.1"
7
7
  },
8
8
  "files": {
9
9
  "node_modules/rsvp/lib/rsvp/promise/all.js": {
@@ -2781,7 +2781,7 @@
2781
2781
  "namespace": "",
2782
2782
  "file": "packages/ember-glimmer/lib/helper.ts",
2783
2783
  "line": 44,
2784
- "description": "Ember Helpers are functions that can compute values, and are used in templates.\nFor example, this code calls a helper named `format-currency`:\n\n```handlebars\n<div>{{format-currency cents currency=\"$\"}}</div>\n```\n\nAdditionally a helper can be called as a nested helper (sometimes called a\nsubexpression). In this example, the computed value of a helper is passed\nto a component named `show-money`:\n\n```handlebars\n{{show-money amount=(format-currency cents currency=\"$\")}}\n```\n\nHelpers defined using a class must provide a `compute` function. For example:\n\n```app/helpers/format-currency.js\nimport Helper from '@ember/component/helper';\n\nexport default Helper.extend({\n compute([cents], { currency }) {\n return `${currency}${cents * 0.01}`;\n }\n});\n```\n\nEach time the input to a helper changes, the `compute` function will be\ncalled again.\n\nAs instances, these helpers also have access to the container an will accept\ninjected dependencies.\n\nAdditionally, class helpers can call `recompute` to force a new computation.",
2784
+ "description": "Ember Helpers are functions that can compute values, and are used in templates.\nFor example, this code calls a helper named `format-currency`:\n\n```handlebars\n<div>{{format-currency cents currency=\"$\"}}</div>\n```\n\nAdditionally a helper can be called as a nested helper (sometimes called a\nsubexpression). In this example, the computed value of a helper is passed\nto a component named `show-money`:\n\n```handlebars\n{{show-money amount=(format-currency cents currency=\"$\")}}\n```\n\nHelpers defined using a class must provide a `compute` function. For example:\n\n```app/helpers/format-currency.js\nimport Helper from '@ember/component/helper';\n\nexport default Helper.extend({\n compute([cents], { currency }) {\n return `${currency}${cents * 0.01}`;\n }\n});\n```\n\nEach time the input to a helper changes, the `compute` function will be\ncalled again.\n\nAs instances, these helpers also have access to the container and will accept\ninjected dependencies.\n\nAdditionally, class helpers can call `recompute` to force a new computation.",
2785
2785
  "access": "public",
2786
2786
  "tagname": "",
2787
2787
  "since": "1.13.0"
@@ -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",
@@ -11055,7 +11055,7 @@
11055
11055
  "description": "",
11056
11056
  "type": "Void"
11057
11057
  },
11058
- "access": "private",
11058
+ "access": "public",
11059
11059
  "tagname": "",
11060
11060
  "class": "Ember",
11061
11061
  "module": "ember"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-source",
3
- "version": "3.5.0-beta.2",
3
+ "version": "3.5.1",
4
4
  "description": "A JavaScript framework for creating ambitious web applications",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -66,14 +66,14 @@
66
66
  "resolve": "^1.6.0"
67
67
  },
68
68
  "devDependencies": {
69
- "@glimmer/compiler": "^0.35.8",
69
+ "@glimmer/compiler": "^0.35.10",
70
70
  "@glimmer/env": "^0.1.7",
71
- "@glimmer/interfaces": "^0.35.8",
72
- "@glimmer/node": "^0.35.8",
73
- "@glimmer/opcode-compiler": "^0.35.8",
74
- "@glimmer/program": "^0.35.8",
75
- "@glimmer/reference": "^0.35.8",
76
- "@glimmer/runtime": "^0.35.8",
71
+ "@glimmer/interfaces": "^0.35.10",
72
+ "@glimmer/node": "^0.35.10",
73
+ "@glimmer/opcode-compiler": "^0.35.10",
74
+ "@glimmer/program": "^0.35.10",
75
+ "@glimmer/reference": "^0.35.10",
76
+ "@glimmer/runtime": "^0.35.10",
77
77
  "@types/qunit": "^2.5.0",
78
78
  "@types/rsvp": "^4.0.1",
79
79
  "amd-name-resolver": "^1.2.0",
@@ -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,9 +153,6 @@
153
153
  "ember-addon": {
154
154
  "after": "ember-cli-legacy-blueprints"
155
155
  },
156
- "_originalVersion": "3.5.0-beta.2",
157
- "_versionPreviouslyCalculated": true,
158
- "publishConfig": {
159
- "tag": "beta"
160
- }
161
- }
156
+ "_originalVersion": "3.5.1",
157
+ "_versionPreviouslyCalculated": true
158
+ }