@qwik.dev/core 2.0.0-beta.29 → 2.0.0-beta.30
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/backpatch/package.json +1 -1
- package/dist/build/package.json +1 -1
- package/dist/cli.mjs +2 -2
- package/dist/core-internal.d.ts +32 -184
- package/dist/core.min.mjs +2 -1
- package/dist/core.mjs +810 -340
- package/dist/core.mjs.map +1 -1
- package/dist/core.prod.mjs +3692 -3249
- package/dist/loader/index.mjs +2 -2
- package/dist/loader/package.json +1 -1
- package/dist/optimizer.d.ts +8 -224
- package/dist/optimizer.mjs +1382 -1702
- package/dist/qwikloader.debug.js +10 -3
- package/dist/qwikloader.js +1 -1
- package/dist/server.d.ts +2 -181
- package/dist/server.mjs +23 -21
- package/dist/server.prod.mjs +337 -336
- package/dist/starters/adapters/netlify-edge/package.json +2 -2
- package/dist/testing/index.d.ts +4 -1
- package/dist/testing/index.mjs +1241 -696
- package/dist/testing/package.json +1 -1
- package/handlers.mjs +1 -1
- package/package.json +5 -6
- package/public.d.ts +1 -0
- package/bindings/qwik.darwin-arm64.node +0 -0
- package/bindings/qwik.linux-x64-gnu.node +0 -0
- package/bindings/qwik.wasm.mjs +0 -464
- package/bindings/qwik.win32-x64-msvc.node +0 -0
- package/bindings/qwik_wasm_bg.wasm +0 -0
- package/dist/starters/features/playwright/playwright-report/index.html +0 -22047
package/dist/testing/index.d.ts
CHANGED
|
@@ -47,7 +47,8 @@ declare const enum ChoreBits {
|
|
|
47
47
|
COMPUTE = 16,
|
|
48
48
|
CHILDREN = 32,
|
|
49
49
|
CLEANUP = 64,
|
|
50
|
-
|
|
50
|
+
RECONCILE = 128,
|
|
51
|
+
DIRTY_MASK = 255
|
|
51
52
|
}
|
|
52
53
|
|
|
53
54
|
/** @internal */
|
|
@@ -855,6 +856,8 @@ declare class Task<T = unknown, B = T> extends BackRef implements DescriptorBase
|
|
|
855
856
|
$qrl$: QRLInternal<T>;
|
|
856
857
|
$state$: Signal<B> | undefined;
|
|
857
858
|
$destroy$: (() => void) | null;
|
|
859
|
+
$destroyPromise$: Promise<void> | undefined;
|
|
860
|
+
$taskPromise$: Promise<void> | null;
|
|
858
861
|
constructor($flags$: number, $index$: number, $el$: HostElement, $qrl$: QRLInternal<T>, $state$: Signal<B> | undefined, $destroy$: (() => void) | null);
|
|
859
862
|
}
|
|
860
863
|
|