@qwik.dev/core 2.0.0-beta.24 → 2.0.0-beta.25

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.
Binary file
Binary file
Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qwik.dev/core/backpatch",
3
- "version": "2.0.0-beta.24-dev+314726b",
3
+ "version": "2.0.0-beta.25-dev+2677279",
4
4
  "main": "index.mjs",
5
5
  "types": "index.d.ts",
6
6
  "private": true,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qwik.dev/core/build",
3
- "version": "2.0.0-beta.24-dev+314726b",
3
+ "version": "2.0.0-beta.25-dev+2677279",
4
4
  "main": "index.mjs",
5
5
  "types": "index.d.ts",
6
6
  "private": true,
package/dist/cli.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * @qwik.dev/core/cli 2.0.0-beta.24-dev+314726b
3
+ * @qwik.dev/core/cli 2.0.0-beta.25-dev+2677279
4
4
  * Copyright QwikDev. All Rights Reserved.
5
5
  * Use of this source code is governed by an MIT-style license that can be
6
6
  * found in the LICENSE file at https://github.com/QwikDev/qwik/blob/main/LICENSE
@@ -12908,7 +12908,7 @@ async function printHelp(app) {
12908
12908
  await runCommand2(Object.assign(app, { task: args[0], args }));
12909
12909
  }
12910
12910
  function printVersion() {
12911
- console.log("2.0.0-beta.24-dev+314726b");
12911
+ console.log("2.0.0-beta.25-dev+2677279");
12912
12912
  }
12913
12913
  export {
12914
12914
  runCli,
@@ -1212,6 +1212,8 @@ export declare const _dumpState: (state: unknown[], color?: boolean, prefix?: st
1212
1212
  /** @internal */
1213
1213
  export declare const _EFFECT_BACK_REF: unique symbol;
1214
1214
 
1215
+ declare type EffectBackRef = SignalImpl | StoreTarget | PropsProxy;
1216
+
1215
1217
  declare const enum EffectProperty {
1216
1218
  COMPONENT = ":",
1217
1219
  VNODE = "."
@@ -1256,9 +1258,9 @@ declare const enum EffectProperty {
1256
1258
  declare class EffectSubscription {
1257
1259
  consumer: Consumer;
1258
1260
  property: EffectProperty | string;
1259
- backRef: Set<SignalImpl | StoreTarget> | null;
1261
+ backRef: Set<EffectBackRef> | null;
1260
1262
  data: _SubscriptionData | null;
1261
- constructor(consumer: Consumer, property: EffectProperty | string, backRef?: Set<SignalImpl | StoreTarget> | null, data?: _SubscriptionData | null);
1263
+ constructor(consumer: Consumer, property: EffectProperty | string, backRef?: Set<EffectBackRef> | null, data?: _SubscriptionData | null);
1262
1264
  }
1263
1265
 
1264
1266
  /** @internal */
@@ -1956,7 +1958,7 @@ export declare const _noopQrlDEV: <T>(symbolName: string, opts: QRLDev, lexicalS
1956
1958
  * @see noSerialize
1957
1959
  */
1958
1960
  export declare type NoSerialize<T> = (T & {
1959
- __no_serialize__: true;
1961
+ __no_serialize__?: true;
1960
1962
  }) | undefined;
1961
1963
 
1962
1964
  /**
@@ -4677,7 +4679,7 @@ export declare const _VAR_PROPS: unique symbol;
4677
4679
  export declare const _verifySerializable: <T>(value: T, preMessage?: string) => T;
4678
4680
 
4679
4681
  /**
4680
- * 2.0.0-beta.24-dev+314726b
4682
+ * 2.0.0-beta.25-dev+2677279
4681
4683
  *
4682
4684
  * @public
4683
4685
  */