@qwik.dev/core 2.0.0-beta.30 → 2.0.0-beta.31

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.
@@ -48,7 +48,8 @@ declare const enum ChoreBits {
48
48
  CHILDREN = 32,
49
49
  CLEANUP = 64,
50
50
  RECONCILE = 128,
51
- DIRTY_MASK = 255
51
+ ERROR_WRAP = 256,
52
+ DIRTY_MASK = 511
52
53
  }
53
54
 
54
55
  /** @internal */
@@ -441,6 +442,7 @@ declare class LazyRef<TYPE = unknown> {
441
442
  $ref$?: (null | ValueOrPromise<TYPE>) | undefined;
442
443
  $container$: Container | undefined;
443
444
  dev?: QRLDev | null | undefined;
445
+ qrls?: Set<any>;
444
446
  constructor($chunk$: string | null, $symbol$: string, $symbolFn$: undefined | null | (() => Promise<Record<string, TYPE>>), $ref$?: (null | ValueOrPromise<TYPE>) | undefined, container?: Container | null);
445
447
  /** We don't read hash very often so let's not allocate a string for every QRL */
446
448
  get $hash$(): string;
@@ -668,6 +670,7 @@ declare type QRLInternalMethods<TYPE> = {
668
670
  /** If this returns false, the function execution will be skipped */
669
671
  beforeFn?: () => void | false): TYPE extends (...args: any) => any ? (...args: Parameters<TYPE>) => ValueOrPromise<ReturnType<TYPE> | undefined> : unknown;
670
672
  $callFn$(withThis: unknown, ...args: QrlArgs<TYPE>): ValueOrPromise<QrlReturn<TYPE>>;
673
+ $setDev$(dev: QRLDev | null): void;
671
674
  /**
672
675
  * "with captures" - Get a new QRL for these captures, reusing the lazy ref. It's an internal
673
676
  * method but we need to have a stable name because it gets called in user code by the optimizer,