@warp-drive/ember 5.6.0-alpha.11 → 5.6.0-alpha.13
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/dist/index.js +6 -1
- package/dist/install.js +4 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -7,6 +7,7 @@ export { getPromiseState, getRequestState } from '@warp-drive/core/store/-privat
|
|
|
7
7
|
import { EnableHydration } from '@warp-drive/core/types/request';
|
|
8
8
|
import { precompileTemplate } from '@ember/template-compilation';
|
|
9
9
|
import { setComponentTemplate } from '@ember/component';
|
|
10
|
+
|
|
10
11
|
const and = (x, y) => Boolean(x && y);
|
|
11
12
|
/**
|
|
12
13
|
* The `<Throw />` component is used to throw an error in a template.
|
|
@@ -90,6 +91,7 @@ class Await extends Component {
|
|
|
90
91
|
}), this);
|
|
91
92
|
}
|
|
92
93
|
}
|
|
94
|
+
|
|
93
95
|
const deferred = /* @__PURE__ */new WeakMap();
|
|
94
96
|
function deferDecorator(proto, prop, desc) {
|
|
95
97
|
let map = deferred.get(proto);
|
|
@@ -154,6 +156,7 @@ function initializeDeferredDecorator(target, prop) {
|
|
|
154
156
|
});
|
|
155
157
|
}
|
|
156
158
|
}
|
|
159
|
+
|
|
157
160
|
function notNull(x) {
|
|
158
161
|
macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
|
|
159
162
|
if (!test) {
|
|
@@ -942,4 +945,6 @@ class Request extends Component {
|
|
|
942
945
|
}), this);
|
|
943
946
|
}
|
|
944
947
|
}
|
|
945
|
-
|
|
948
|
+
|
|
949
|
+
export { Await, Request, Throw };
|
|
950
|
+
//# sourceMappingURL=index.js.map
|
package/dist/install.js
CHANGED
|
@@ -3,6 +3,7 @@ import { _backburner } from '@ember/runloop';
|
|
|
3
3
|
import { createCache, track, updateTag, consumeTag, getValue, dirtyTag } from '@glimmer/validator';
|
|
4
4
|
import { macroCondition, getGlobalConfig, importSync } from '@embroider/macros';
|
|
5
5
|
import { setupSignals } from '@warp-drive/core/configure';
|
|
6
|
+
|
|
6
7
|
const emberDirtyTag = dirtyTag;
|
|
7
8
|
function buildSignalConfig(options) {
|
|
8
9
|
const ARRAY_SIGNAL = options.wellknown.Array;
|
|
@@ -72,4 +73,6 @@ function buildSignalConfig(options) {
|
|
|
72
73
|
};
|
|
73
74
|
}
|
|
74
75
|
setupSignals(buildSignalConfig);
|
|
75
|
-
|
|
76
|
+
|
|
77
|
+
export { buildSignalConfig };
|
|
78
|
+
//# sourceMappingURL=install.js.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warp-drive/ember",
|
|
3
3
|
"description": "Data bindings and utilities for Ember applications using WarpDrive",
|
|
4
|
-
"version": "5.6.0-alpha.
|
|
4
|
+
"version": "5.6.0-alpha.13",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Chris Thoburn <runspired@users.noreply.github.com>",
|
|
7
7
|
"repository": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@embroider/macros": "^1.16.12",
|
|
41
|
-
"@warp-drive/core": "5.6.0-alpha.
|
|
41
|
+
"@warp-drive/core": "5.6.0-alpha.13"
|
|
42
42
|
},
|
|
43
43
|
"peerDependenciesMeta": {
|
|
44
44
|
"ember-provide-consume-context": {
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"@embroider/addon-dev": "^7.1.3",
|
|
61
61
|
"@ember/test-helpers": "5.2.0",
|
|
62
62
|
"@ember/test-waiters": "^4.1.0",
|
|
63
|
-
"@warp-drive/internal-config": "5.6.0-alpha.
|
|
64
|
-
"@warp-drive/core": "5.6.0-alpha.
|
|
63
|
+
"@warp-drive/internal-config": "5.6.0-alpha.13",
|
|
64
|
+
"@warp-drive/core": "5.6.0-alpha.13",
|
|
65
65
|
"babel-plugin-ember-template-compilation": "^2.4.1",
|
|
66
66
|
"ember-template-imports": "^4.3.0",
|
|
67
67
|
"ember-source": "~6.3.0",
|