ember-source 5.3.0-alpha.2 → 5.3.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.
- package/build-metadata.json +3 -3
- package/dist/ember-template-compiler.js +2 -2
- package/dist/ember-template-compiler.map +1 -1
- package/dist/ember-testing.js +1 -1
- package/dist/ember-testing.map +1 -1
- package/dist/ember.debug.js +2 -2
- package/dist/ember.debug.map +1 -1
- package/dist/header/license.js +1 -1
- package/dist/packages/ember/version.js +1 -1
- package/docs/data.json +1 -1
- package/package.json +2 -2
- package/types/stable/@ember/array/index.d.ts +1 -1
package/dist/header/license.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default "5.3.0-alpha.
|
|
1
|
+
export default "5.3.0-alpha.3";
|
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": "5.3.0-alpha.
|
|
6
|
+
"version": "5.3.0-alpha.3"
|
|
7
7
|
},
|
|
8
8
|
"files": {
|
|
9
9
|
"node_modules/rsvp/lib/rsvp/promise/all.js": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-source",
|
|
3
|
-
"version": "5.3.0-alpha.
|
|
3
|
+
"version": "5.3.0-alpha.3",
|
|
4
4
|
"description": "A JavaScript framework for creating ambitious web applications",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
"node": "16.20.0",
|
|
187
187
|
"yarn": "1.22.19"
|
|
188
188
|
},
|
|
189
|
-
"_originalVersion": "5.3.0-alpha.
|
|
189
|
+
"_originalVersion": "5.3.0-alpha.3",
|
|
190
190
|
"_versionPreviouslyCalculated": true,
|
|
191
191
|
"publishConfig": {
|
|
192
192
|
"tag": "alpha"
|
|
@@ -1343,7 +1343,7 @@ declare module '@ember/array' {
|
|
|
1343
1343
|
/**
|
|
1344
1344
|
@module ember
|
|
1345
1345
|
*/
|
|
1346
|
-
type AnyArray<T> = EmberArray<T> | Array<T>;
|
|
1346
|
+
type AnyArray<T> = EmberArray<T> | Array<T> | ReadonlyArray<T>;
|
|
1347
1347
|
/**
|
|
1348
1348
|
* The final definition of NativeArray removes all native methods. This is the list of removed methods
|
|
1349
1349
|
* when run in Chrome 106.
|